:root {

    --primary: #0061FF;

    --bg-light: #F3F9FF;

    --sidebar-blue: #E3F2FD;

    --text-dark: #0D47A1;

}



* { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Inter', sans-serif; }



body { background: var(--bg-light); height: 100vh; display: flex; flex-direction: column; }



/* Header */

header {

    background: white; padding: 10px 30px; display: flex;

    align-items: center; justify-content: space-between;

    border-bottom: 1px solid #E1F5FE;

}



.logo-container { display: flex; align-items: center; gap: 12px; }



.logo-box {

    background: var(--primary); width: 42px; height: 42px;

    border-radius: 10px; display: flex; align-items: center;

    justify-content: center; overflow: hidden;

}



.brand-logo { width: 80%; height: auto; object-fit: contain; }



.brand-name { font-weight: 700; font-size: 20px; color: #1A1A1A; }



.header-right { display: flex; align-items: center; gap: 15px; font-size: 14px; }



.btn-get-started {

    background: var(--primary); color: white; border: none;

    padding: 8px 16px; border-radius: 8px; font-weight: 600; cursor: pointer;

}



/* Layout */

.layout { display: flex; flex: 1; overflow: hidden; }



.sidebar {

    width: 250px; background: var(--sidebar-blue);

    padding: 20px 15px; border-right: 1px solid #BBDEFB;

}



.nav-item {

    padding: 12px 15px; border-radius: 10px; cursor: pointer;

    color: #546E7A; margin-bottom: 5px; transition: 0.2s;

}



.nav-item:hover { background: rgba(255, 255, 255, 0.4); }



.nav-item.active {

    background: white; color: var(--text-dark);

    font-weight: 700; box-shadow: 0 2px 5px rgba(0,0,0,0.05);

}



/* Main Content */

.content { flex: 1; padding: 40px; overflow-y: auto; }



.stats-container { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 30px; }



.stat-card {

    background: white; padding: 25px; border-radius: 16px;

    display: flex; align-items: center; gap: 20px;

    border: 1px solid #E1F5FE;

}



.stat-icon { width: 50px; height: 50px; border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 20px; }

.stat-icon.green { background: #DCFCE7; }

.stat-icon.blue { background: #E0F2F1; }



.data-card { background: white; padding: 25px; border-radius: 16px; box-shadow: 0 4px 10px rgba(0,0,0,0.02); }



.need-row { display: flex; align-items: center; padding: 15px 0; border-bottom: 1px solid #F5F5F5; }



.need-details { flex: 1; }



.btn-edit { background: none; border: 1px solid #DDD; padding: 6px 12px; border-radius: 6px; cursor: pointer; margin-right: 10px; }



.btn-view { background: #455A64; color: white; border: none; padding: 8px 14px; border-radius: 6px; cursor: pointer; }



/* Modal */

.modal { display: none; position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.5); align-items: center; justify-content: center; }

.modal-content { background: white; padding: 30px; border-radius: 12px; width: 350px; }

.modal-content input { width: 100%; padding: 10px; margin: 15px 0; }









.nav-item, .nav-item * {

    text-decoration: none !important;

} 






























/* AI Assistant Section - Dashboard Friendly */
.ai-card {
    background: white;
    padding: 20px;
    border-radius: 16px;
    margin-bottom: 25px; /* Stats se gap rakhne ke liye */
    border: 1px solid #E1F5FE;
    width: 100%; /* Isse layout distort nahi hoga */
    display: block;
    box-shadow: 0 2px 8px rgba(0,0,0,0.02);
}

.ai-header { display: flex; gap: 12px; margin-bottom: 15px; }

.ai-icon { font-size: 20px; }

.ai-titles h3 { color: var(--text-dark); font-size: 16px; font-weight: 700; margin: 0; }

.ai-titles p { color: #546E7A; font-size: 13px; margin-top: 2px; }

.ai-textarea {
    width: 100%;
    min-height: 70px;
    padding: 12px;
    border: 1px solid #E3F2FD;
    border-radius: 8px;
    background: #F8FBFF;
    font-size: 14px;
    margin-bottom: 10px;
    outline: none;
    resize: vertical;
}

.btn-ai {
    background: var(--primary);
    color: white;
    border: none;
    padding: 8px 20px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    font-size: 14px;
}

#resultBox {
    margin-top: 15px;
    padding: 12px;
    background: #F0F7FF;
    border-radius: 8px;
    border-left: 4px solid var(--primary);
    font-size: 14px;
    display: none;
}



















/* AI Button Hover Effects */
.btn-ai:hover {
    background: #0056e0; /* Darker blue */
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 97, 255, 0.2);
    transition: all 0.3s ease;
}

.btn-ai:active {
    transform: translateY(0);
}

/* AI Textarea focus state */
.ai-textarea:focus {
    border-color: var(--primary);
    background: white;
    box-shadow: 0 0 0 3px rgba(0, 97, 255, 0.05);
}

/* Result Box Animation - Jab AI ka reply aaye toh smooth dikhe */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

#resultBox.show {
    display: block;
    animation: fadeIn 0.4s ease forwards;
}

/* Loading State - Button par click karne ke baad ki styling */
.loading {
    opacity: 0.7;
    cursor: not-allowed;
    pointer-events: none;
}

/* Mobile Responsiveness - Agar screen chhoti ho toh */
@media (max-width: 768px) {
    .ai-card {
        padding: 15px;
    }
    .ai-titles h3 {
        font-size: 14px;
    }
}



























