/* Gemini Chat Container Styles */
.gemini-chat-container {
    max-width: 600px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.chat-suggestions {
    background: rgba(255, 255, 255, 0.05);
    padding: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.chat-suggestions h3 {
    color: var(--accent-color);
    margin-bottom: 10px;
    font-size: 1rem;
    text-align: center;
}

.suggestion-chips {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}

.suggestion-chip {
    background: rgba(255, 255, 255, 0.1);
    color: var(--light-color);
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.suggestion-chip:hover {
    background: linear-gradient(to right, rgba(253, 62, 136, 0.3), rgba(141, 37, 255, 0.3));
    transform: scale(1.05);
}

.chat-messages {
    height: 500px;
    overflow-y: auto;
    padding: 20px;
    display: flex;
    flex-direction: column;
    background: rgba(16, 16, 24, 0.5);
}

.welcome-message {
    background: rgba(255, 255, 255, 0.1);
    color: var(--light-color);
    padding: 15px;
    border-radius: 10px;
    margin-bottom: 15px;
    align-self: flex-start;
    max-width: 80%;
}

.chat-input-area {
    display: flex;
    padding: 15px;
    background: rgba(255, 255, 255, 0.05);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

#user-input {
    flex-grow: 1;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--light-color);
    padding: 10px;
    border-radius: 5px;
    margin-right: 10px;
    outline: none;
}

#send-btn {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--light-color);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

#send-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 5px 15px rgba(253, 62, 136, 0.4);
}

.chat-message {
    max-width: 80%;
    margin-bottom: 15px;
    padding: 10px 15px;
    border-radius: 10px;
    clear: both;
}

.chat-message.user-message {
    background: linear-gradient(to right, rgba(253, 62, 136, 0.3), rgba(141, 37, 255, 0.3));
    align-self: flex-end;
    margin-left: auto;
}

.chat-message.ai-message {
    background: rgba(255, 255, 255, 0.1);
    align-self: flex-start;
}

.chat-message.error-message {
    background: rgba(255, 0, 0, 0.2);
    color: #ff6b6b;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .suggestion-chips {
        flex-direction: row;
        justify-content: center;
    }
    
    .suggestion-chip {
        font-size: 0.8rem;
        padding: 6px 12px;
    }

    .chat-messages {
        height: 400px;
    }
}

@media (max-width: 576px) {
    .chat-messages {
        height: 350px;
    }

    .chat-message {
        max-width: 90%;
    }

    .welcome-message {
        max-width: 90%;
    }
}