﻿.ai-button {
    display: inline-block;
    padding: 12px 30px;
    color: #000;
    background-color: #fffbea;
    border: 2px solid transparent;
    border-image: linear-gradient(45deg, #f9d423, #ff4e50);
    border-image-slice: 1;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease-in-out;
    box-shadow: 0 0 10px rgba(191, 163, 21, 0.3);
}

.ai-button:hover {
    background-color: #ffcc00;
    color: #000;
    border-image: linear-gradient(135deg, #fd4a14, #f9d423);
    box-shadow: 0 0 15px rgba(255, 201, 0, 0.5);
    transform: scale(1.05);
    border: none;
}

.chat-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 20px;
    box-shadow: 0 2px 6px #9b33b0;
    background-color: #f9f2f9;
    border: 2px solid #e6b800;
    border-radius: 10px;
}

.chat-header {
    text-align: center;
    font-size: 24px;
    margin-bottom: 20px;
    color: #000;
}

.chat-box {
    height: 300px;
    border: 1px solid #e6b800;
    border-radius: 5px;
    padding: 10px;
    margin-bottom: 20px;
    background-color: #fff;
    overflow-y: auto;
}

.chat-form {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.user-input {
    flex: 1;
    min-width: 200px;
    padding: 10px;
    font-size: 16px;
    border: 1px solid #e6b800;
    border-radius: 5px;
    outline: none;
}

.user-input:focus {
    border-color: #ffcc00;
}

.send-button {
    padding: 10px 20px;
    font-size: 16px;
    background-color: #ffcc00;
    border: none;
    border-radius: 5px;
    color: white;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.send-button:hover {
    background-color: #e6b800;
}

@media (max-width: 768px) {
    .chat-container {
        padding: 15px;
    }

    .chat-form {
        flex-direction: column;
        gap: 8px;
    }

    .user-input, .send-button {
        width: 100%;
    }
}