/* रंग आणि थीम */
:root {
    --primary-color: #1e3a8a; /* डीप ब्लू */
    --secondary-color: #22c55e; /* ग्रीन */
    --accent-color: #f97316; /* ऑरेंज */
    --text-color: #333333; /* डार्क ग्रे */
    --muted-color: #666666; /* म्यूटेड ग्रे */
    --background-color: #f8fafc; /* हलका बॅकग्राउंड */
}

/* बेस स्टायल्स */
body {
    font-family: 'Roboto', sans-serif;
    background-color: var(--background-color);
    color: var(--text-color);
    line-height: 1.6;
}

/* नेव्हबार */
.navbar {
    background-color: var(--primary-color);
    padding: 1rem 0;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.navbar-brand, .nav-link {
    color: #ffffff !important;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
}

.nav-link:hover, .nav-link.active {
    color: var(--accent-color) !important;
}

/* हेडिंग्ज */
.heading-primary {
    color: var(--primary-color);
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.heading-secondary {
    color: var(--primary-color);
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
}

/* कार्ड */
.card {
    border: none;
    border-radius: 12px;
    background-color: #ffffff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    padding: 1.5rem;
}

.card-body {
    padding: 2rem;
}

/* फॉर्म स्टायल्स */
.form-label {
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    color: var(--muted-color);
}

.custom-input {
    border: 1px solid #d1d5db;
    border-radius: 8px;
    padding: 0.75rem;
    font-family: 'Roboto', sans-serif;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.custom-input:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 5px rgba(30, 58, 138, 0.2);
    outline: none;
}

/* बटणे */
.custom-btn {
    background-color: var(--secondary-color);
    border: none;
    border-radius: 8px;
    padding: 0.75rem;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 1.1rem;
    transition: background-color 0.3s ease;
}

.custom-btn:hover {
    background-color: #16a34a;
}

.custom-btn-warning {
    background-color: var(--accent-color);
    border: none;
    border-radius: 8px;
    padding: 0.75rem;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 1.1rem;
    transition: background-color 0.3s ease;
}

.custom-btn-warning:hover {
    background-color: #ea580c;
}

.custom-btn-secondary {
    background-color: #6b7280;
    border: none;
    border-radius: 8px;
    padding: 0.75rem;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 1.1rem;
    transition: background-color 0.3s ease;
}

.custom-btn-secondary:hover {
    background-color: #4b5563;
}

.custom-btn-danger {
    background-color: #dc2626;
    border: none;
    border-radius: 8px;
    padding: 0.5rem 1rem;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 0.9rem;
    transition: background-color 0.3s ease;
}

.custom-btn-danger:hover {
    background-color: #b91c1c;
}

/* टेबल स्टायल्स */
.custom-table {
    border-collapse: separate;
    border-spacing: 0;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.custom-table thead {
    background-color: var(--primary-color);
    color: #ffffff;
}

.custom-table th {
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    padding: 1rem;
    text-align: left;
}

.custom-table tbody tr {
    background-color: #ffffff;
    transition: background-color 0.3s ease;
}

.custom-table tbody tr:hover {
    background-color: #f1f5f9;
}

.custom-table td {
    padding: 1rem;
    font-family: 'Roboto', sans-serif;
    font-size: 0.95rem;
    border-bottom: 1px solid #e5e7eb;
}

/* हायलाइट स्टायल्स */
.highlight-weight {
    color: var(--secondary-color);
    font-weight: 500;
}

.description-text {
    color: var(--muted-color);
    font-size: 0.9rem;
}

/* एरर आणि नो-डेटा मेसेजेस */
.error-message {
    font-family: 'Roboto', sans-serif;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.no-data {
    font-family: 'Roboto', sans-serif;
    font-size: 1rem;
    color: var(--muted-color);
    text-align: center;
    margin-top: 1.5rem;
}

/* रिस्पॉन्सिव्ह डिझाइन */
@media (max-width: 768px) {
    .heading-primary {
        font-size: 2rem;
    }

    .heading-secondary {
        font-size: 1.5rem;
    }

    .custom-table th, .custom-table td {
        padding: 0.75rem;
        font-size: 0.85rem;
    }

    .custom-btn, .custom-btn-warning, .custom-btn-secondary {
        font-size: 1rem;
        padding: 0.6rem;
    }
}