.chatbot-button {
    position: fixed;
    bottom: 1rem;
    right: 1rem;
    cursor: pointer;
    background-color: #3b82f6;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    z-index: 1000;
    font-size: 1rem;
}

.chatbot-logo {
    width: 1.5rem;
    height: 1.5rem;
    border-radius: 50%;
}

.chatbot-window {
    position: fixed;
    bottom: 4rem;
    right: 1rem;
    width: 90%;
    max-width: 24rem;
    background-color: #1f2937;
    color: white;
    border-radius: 0.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: transform 0.3s ease-in-out;
}

.chatbot-header {
    padding: 0.75rem 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #374151;
}

.chatbot-header-title {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.125rem;
    font-weight: 600;
}

.chatbot-header-logo {
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
}

.chatbot-close-button {
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
}

.chatbot-messages {
    padding: 0.5rem 1rem;
    overflow-y: auto;
    max-height: 12rem;
}

.message {
    margin-bottom: 1rem;
    padding: 0.5rem;
    border-radius: 0.5rem;
    font-size: 1rem;
}

.bot-message {
    background-color: #374151;
    color: #e5e7eb;
}

.user-message {
    background-color: #3b82f6;
    color: #f9fafb;
}

.typing-indicator {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    color: #9ca3af;
}

.typing-dot {
    width: 0.5rem;
    height: 0.5rem;
    background-color: #9ca3af;
    border-radius: 50%;
    animation: pulse 1.5s infinite;
}

.typing-dot:nth-child(2) {
    animation-delay: 0.2s;
}

.typing-dot:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes pulse {
    0%, 100% {
        opacity: 0.4;
    }
    50% {
        opacity: 1;
    }
}

.prompt-item {
    background-color: #4b5563;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 0.375rem;
    cursor: pointer;
    font-size: 1rem;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.prompt-item:hover {
    background-color: #6b7280;
}

.unread-badge {
    background-color: #ef4444;
    color: white;
    font-size: 0.75rem;
    border-radius: 9999px;
    width: 1.25rem;
    height: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
}