.assistant-section {
    width: 100%;
    background-color: black;
    display: flex;
    justify-content: center;
    color: white;
}

.assistant-container {
    width: 100%;
    background-color: #000000;
    padding: 20px;
    display: flex;
    flex-direction: column;
}

.assistant-container h2 {
    text-align: center;
    margin-bottom: 1rem;
    font-family: URFAheavy;
}

.assistant-messages {
    height: 300px;
    overflow-y: auto;
    border: 1px solid #444;
    padding: 10px;
    background-color: #111;
    margin-bottom: 1rem;
}

.user-msg { text-align: right; color: white; margin: 5px; }
.ai-msg { text-align: left; color: blueviolet; margin: 5px; }

.typing { display: inline-block; width: 10px; height: 10px; border-radius: 50%; background: blueviolet; margin-right: 3px; animation: bounce 0.6s infinite alternate; }
.typing:nth-child(2) { animation-delay: 0.2s; }
.typing:nth-child(3) { animation-delay: 0.4s; }

@keyframes bounce { from { transform: translateY(0); } to { transform: translateY(-6px); } }

.assistant-input-container { display: flex; gap: 5px; }

.assistant-input-container input {
    flex: 1;
    padding: 8px;
    border-radius: 5px;
    border: 1px solid #444;
    background: #222;
    color: white;
    font-family: URFAregular;
}

.assistant-input-container button {
    padding: 8px 15px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-family: URFAregular;
}

#sendBtn { background-color: blueviolet; color: white; }
#sendBtn:hover { background-color: rebeccapurple; }

#clearBtn { background-color: #444; color: white; }
#clearBtn:hover { background-color: #666; }

@media (max-width: 800px) {
    .assistant-container { width: 95%; padding: 15px; }
    .assistant-messages { height: 250px; }
}
