/* AI DASHBOARD STYLES */
.ai-dashboard {
    font-family: 'Poppins', sans-serif;
    background: #0f172a;
    color: white;
    min-height: 100vh;
}

.dashboard-container {
    display: flex;
    min-height: 100vh;
}

.ai-sidebar {
    width: 250px;
    background: #1e293b;
    padding: 20px;
}

.ai-main {
    flex: 1;
    padding: 20px;
}

.ai-tab {
    display: none;
}

.ai-tab.active {
    display: block;
}

.chat-messages {
    height: 500px;
    overflow-y: auto;
    background: #1e293b;
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 20px;
}

.message {
    margin-bottom: 15px;
    padding: 10px;
    border-radius: 8px;
}

.message.ai {
    background: #334155;
}

.chat-input textarea {
    width: 100%;
    padding: 15px;
    border-radius: 8px;
    background: #1e293b;
    color: white;
    border: 1px solid #475569;
}

/* Responsive */
@media (max-width: 768px) {
    .dashboard-container {
        flex-direction: column;
    }
    .ai-sidebar {
        width: 100%;
    }
}
