body {
    font-family: 'Inter', sans-serif;
    background-color: #030712;
    color: #f9fafb;
}
.modal-bg {
    background-color: rgba(0, 0, 0, 0.7);
}
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: #1f2937;
}
::-webkit-scrollbar-thumb {
    background: #4b5563;
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: #6b7280;
}

/* Estilos para a resposta da IA */
.ai-response ul {
    list-style-type: disc;
    padding-left: 20px;
    margin-top: 8px;
    margin-bottom: 8px;
}

.ai-response ul li {
    margin-bottom: 4px;
}

.ai-response p {
    margin-bottom: 8px;
}
.ai-response p:last-child {
    margin-bottom: 0;
}
.ai-response strong {
    color: #f9fafb; /* white */
}
