/* Chatbot Styles */
.chat-toggle {
    position: fixed;
    bottom: 25px;
    right: 25px;
    background: var(--accent);
    color: white;
    font-size: 1.5rem;
    border-radius: 50%;
    padding: 15px;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s;
    z-index: 999;
}

    .chat-toggle:hover {
        transform: scale(1.1);
    }

.chatbot-container {
    position: fixed;
    bottom: 90px;
    right: 25px;
    width: 320px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    display: none;
    flex-direction: column;
    overflow: hidden;
    z-index: 1000;
    animation: fadeInUp 0.4s ease;
}

.chat-header {
    background: var(--accent);
    color: white;
    padding: 12px 15px;
    font-weight: 600;
    cursor: pointer;
    text-align: center;
}

.chat-body {
    height: 260px;
    padding: 10px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.chat-message {
    padding: 10px 14px;
    border-radius: 12px;
    max-width: 80%;
    line-height: 1.4;
    animation: fadeIn 0.3s ease;
}

    .chat-message.bot {
        background: #f2f2f2;
        align-self: flex-start;
    }

    .chat-message.user {
        background: var(--accent);
        color: white;
        align-self: flex-end;
    }

.chat-input-area {
    display: flex;
    border-top: 1px solid #ddd;
}

    .chat-input-area input {
        flex: 1;
        padding: 10px;
        border: none;
        outline: none;
        font-size: 0.95rem;
    }

    .chat-input-area button {
        background: var(--accent);
        color: white;
        border: none;
        padding: 10px 16px;
        cursor: pointer;
        font-size: 1.1rem;
    }

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}
