/* ARTCON Günlük Rapor Sistemi - Ana Stil Dosyası */

/* Hardening: force mobile off-canvas behavior (highest specificity) */
@media (max-width: 991px) {
    body #sidebar.sidebar {
        will-change: transform;
        transform: translateX(-100%) !important;
    }
    body #sidebar.sidebar.show {
        transform: translateX(0) !important;
    }
    body .sidebar-overlay {
        display: none;
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.3s ease;
    }
    body .sidebar-overlay.show {
        display: block !important;
        opacity: 1 !important;
        pointer-events: auto !important;
    }
}

/* Ensure off-canvas behavior also applies up to 991px width */
@media (max-width: 991px) {
    #sidebar.sidebar {
        transform: translateX(-100%) !important;
        transition: transform 0.3s ease;
    }
    #sidebar.sidebar.show {
        transform: translateX(0) !important;
    }
    .sidebar-overlay.show {
        display: block !important;
        opacity: 1 !important;
    }
    .main-content {
        margin-left: 0 !important;
        width: 100% !important;
    }
}

/* ===== SIDEBAR STYLES ===== */
.sidebar {
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    width: 250px;
    background: #ffffff;
    z-index: 1000;
    transition: transform 0.3s ease;
    overflow-y: auto;
    border-right: 1px solid #e5e7eb;
}

/* Mobile sidebar */
@media (max-width: 768px) {
    .sidebar {
        transform: translateX(-100%);
        width: 280px;
        box-shadow: 2px 0 10px rgba(0,0,0,0.3);
        transition: transform 0.3s ease;
    }
    
    .sidebar.show {
        transform: translateX(0);
    }
    
    .sidebar-toggle {
        display: block !important;
        position: fixed !important;
        top: 20px !important;
        left: 20px !important;
        z-index: 1001 !important;
        background: #0d6efd !important;
        color: white !important;
        border: none !important;
        padding: 12px 15px !important;
        border-radius: 8px !important;
        box-shadow: 0 2px 10px rgba(0,0,0,0.2) !important;
        cursor: pointer !important;
        font-size: 16px !important;
        min-width: 44px !important;
        min-height: 44px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
    }
    
    .main-content {
        margin-left: 0;
        width: 100%;
        padding-top: 80px;
    }
    
    .sidebar-overlay.show {
        display: block;
        opacity: 1;
    }
    
    .sidebar-header {
        padding: 20px;
    }
    
    .sidebar .nav-link {
        padding: 15px 20px;
        font-size: 16px;
    }
    
    .sidebar-toggle:hover {
        transform: scale(1.05) !important;
        box-shadow: 0 4px 15px rgba(0,0,0,0.3) !important;
    }
    
    .sidebar-toggle:active {
        transform: scale(0.95) !important;
    }
}

.sidebar .nav-link {
    color: #0d6efd !important; /* match offcanvas link color */
    padding: 12px 20px;
    margin: 2px 0;
    border-radius: 8px;
    transition: all 0.3s;
    display: flex;
    align-items: center;
}
/* Offcanvas menü linkleri: sidebar ile aynı görünüm */
.offcanvas .nav-link {
    color: #0d6efd !important;
    padding: 12px 20px;
    margin: 2px 0;
    border-radius: 8px;
    transition: all 0.3s;
    display: flex;
    align-items: center;
}

.sidebar .nav-link:hover, .sidebar .nav-link.active,
.offcanvas .nav-link:hover, .offcanvas .nav-link.active {
    color: #0a58ca !important;
    background: #e9ecef;
}

.sidebar .nav-link i {
    width: 20px;
    margin-right: 10px;
    color: #0d6efd;
}
/* Offcanvas icon rengi sidebar ile aynı */
.offcanvas .nav-link i {
    width: 20px;
    margin-right: 10px;
    color: #0d6efd;
}

/* ===== DROPDOWN STYLES ===== */
.sidebar .dropdown-menu {
    background: #ffffff !important;
    border: 1px solid #e5e7eb !important;
    border-radius: 8px !important;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08) !important;
    margin-top: 5px !important;
    padding: 8px 0 !important;
}

.sidebar .dropdown-item {
    color: #374151 !important;
    padding: 8px 20px !important;
    font-size: 0.9rem !important;
    transition: all 0.3s;
}

.sidebar .dropdown-item:hover {
    background: #f3f4f6 !important;
    color: #111827 !important;
}

.sidebar .dropdown-item i {
    width: 16px;
    margin-right: 8px;
    font-size: 0.85rem;
    color: #6b7280;
}

.sidebar .dropdown-divider {
    margin: 5px 0;
    border-color: #e5e7eb;
}

.sidebar .dropdown-toggle::after {
    margin-left: auto;
    transition: transform 0.3s;
}

.sidebar .dropdown.show .dropdown-toggle::after {
    transform: rotate(180deg);
}

/* Dropdown menü görünürlüğü */
.sidebar .dropdown-menu.show {
    display: block !important;
}

.sidebar .dropdown-menu {
    display: none;
    position: static !important;
    float: none !important;
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
}

.sidebar .dropdown-item {
    padding: 8px 20px 8px 50px !important;
}

.sidebar .dropdown-item:hover {
    background: #f3f4f6 !important;
}

.sidebar .dropdown-item i {
    width: 16px;
    margin-right: 8px;
    font-size: 0.85rem;
}

.sidebar-header {
    padding: 20px;
    border-bottom: 1px solid #e5e7eb;
    text-align: center;
}

.sidebar-header h5 {
    color: #111827;
    margin: 0;
    font-weight: bold;
}

.sidebar-header small {
    color: #6b7280;
}

/* ===== SIDEBAR TOGGLE BUTTON ===== */
.sidebar-toggle {
    position: fixed;
    top: 20px;
    left: 20px;
    z-index: 1001;
    background: #0d6efd;
    border: none;
    color: white;
    padding: 12px 15px;
    border-radius: 8px;
    display: none;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
    cursor: pointer;
    font-size: 16px;
    min-width: 44px;
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

.sidebar-toggle:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

.sidebar-toggle:active {
    transform: scale(0.95);
}

.sidebar-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 999;
    display: none;
}

/* ===== WRAPPER ===== */
.wrapper {
    display: flex;
    min-height: 100vh;
}

/* ===== MAIN CONTENT ===== */
.main-content {
    margin-left: 250px;
    background-color: #f8f9fa;
    min-height: 100vh;
    transition: margin-left 0.3s ease;
    width: calc(100% - 250px);
}

/* ===== CARD STYLES ===== */
.card {
    border: none;
    border-radius: 15px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.card-header {
    background: white;
    border-bottom: 1px solid #e9ecef;
    border-radius: 15px 15px 0 0 !important;
}

/* ===== BUTTON STYLES ===== */
.btn-primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
    border-radius: 8px;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

.btn {
    border-radius: 8px;
    transition: all 0.3s ease;
}

.btn:hover {
    transform: translateY(-1px);
}

/* ===== SPECIFIC BUTTON STYLES ===== */
.btn-back {
    background: #6c757d;
    border: none;
    color: white;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.btn-back:hover {
    background: #5a6268;
    color: white;
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

.btn-edit {
    background: #ffc107;
    border: none;
    color: #000;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.btn-edit:hover {
    background: #e0a800;
    color: #000;
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

.btn-new {
    background: #0d6efd;
    border: none;
    color: white;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.btn-new:hover {
    background: #0b5ed7;
    color: white;
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

.btn-save {
    background: #0d6efd;
    border: none;
    color: white;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.btn-save:hover {
    background: #0b5ed7;
    color: white;
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

.btn-update {
    background: #0d6efd;
    border: none;
    color: white;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.btn-update:hover {
    background: #0b5ed7;
    color: white;
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

.btn-print {
    background: #198754;
    border: none;
    color: white;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.btn-print:hover {
    background: #157347;
    color: white;
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

/* Disabled button styles */
.btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none !important;
    box-shadow: none !important;
}

.btn:disabled:hover {
    transform: none !important;
    box-shadow: none !important;
}

/* Report status badges */
.badge-beklemede {
    background: #ffc107 !important;
    color: #000 !important;
}

.badge-okundu {
    background: #28a745 !important;
    color: #fff !important;
}

.badge-uyari {
    background: #dc3545 !important;
    color: #fff !important;
}

/* Taslak badge (moved from assets/css/taslak-badge.css) */
.badge-taslak {
    background-color: #007bff !important;
    color: #fff !important;

}




/* Comment section styles */
.comment-section {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 15px;
    margin-top: 15px;
}

.comment-item {
    border-left: 3px solid #007bff;
    padding-left: 15px;
    margin-bottom: 15px;
}

.comment-header {
    display: flex;
    justify-content: between;
    align-items: center;
    margin-bottom: 8px;
}

.comment-author {
    font-weight: 600;
    color: #495057;
}

.comment-date {
    font-size: 0.875rem;
    color: #6c757d;
}

.comment-content {
    background: white;
    padding: 10px;
    border-radius: 6px;
    border: 1px solid #dee2e6;
}

/* ===== TABLE STYLES ===== */
.table th {
    background: #f8f9fa;
    border-bottom: 2px solid #dee2e6;
    font-weight: 600;
}

.table-hover tbody tr:hover {
    background-color: rgba(0,0,0,0.02);
}

.project-row {
    cursor: pointer;
    transition: background-color 0.2s;
}

.project-row:hover {
    background-color: rgba(0,123,255,0.1) !important;
}

.btn-group-sm .btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.table-responsive {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

/* Responsive table columns */
@media (min-width: 1200px) {
    .table-responsive {
        overflow-x: visible;
    }
}

/* ===== BADGE STYLES ===== */
.badge {
    border-radius: 20px;
    padding: 8px 12px;
}

/* ===== FORM STYLES ===== */
.form-control, .form-select {
    border-radius: 8px;
    border: 1px solid #ced4da;
    transition: all 0.3s ease;
}

.form-control:focus, .form-select:focus {
    border-color: #667eea;
    box-shadow: 0 0 0 0.2rem rgba(102, 126, 234, 0.25);
}

/* ===== FILTER SECTION ===== */
.filter-section {
    background: white;
    border-radius: 15px;
    padding: 20px;
    margin-bottom: 20px;
}

/* ===== STATISTICS CARDS ===== */
.stat-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s;
    padding: 20px;
}

.stat-card:hover {
    transform: translateY(-5px);
}

.stat-card-hover {
    transition: all 0.3s ease;
    cursor: pointer;
}

.stat-card-hover:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.stat-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    color: white;
    font-size: 1.2rem;
}

/* ===== PROJECT CARDS ===== */
.project-card {
    transition: transform 0.3s, box-shadow 0.3s;
    border-radius: 15px;
    overflow: hidden;
}

.project-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

/* ===== ALERT STYLES ===== */
.alert {
    border-radius: 10px;
    border: none;
    padding: 1rem 1.25rem;
    margin-bottom: 1rem;
    font-weight: 500;
}

.alert-danger {
    background-color: #dc3545 !important;
    border-color: #dc3545 !important;
    color: #ffffff !important;
}

.alert-danger .alert-heading {
    color: #ffffff !important;
}

.alert-danger a {
    color: #ffffff !important;
    text-decoration: underline;
}

.alert-danger .btn-close {
    filter: invert(1) grayscale(100%) brightness(200%);
}

.alert-success {
    background-color: #198754 !important;
    color: #ffffff !important;
}

.alert-warning {
    background-color: #ffc107 !important;
    color: #000000 !important;
}

.alert-info {
    background-color: #0dcaf0 !important;
    color: #ffffff !important;
}

/* ===== TOAST STYLES ===== */
.toast {
    border-radius: 8px;
    border: none;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

/* Toast Container Styles */
.toast-container {
    z-index: 9999 !important;
}

.toast {
    min-width: 300px !important;
    border: none !important;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15) !important;
}

.toast.bg-danger {
    background-color: #dc3545 !important;
    color: #ffffff !important;
}

.toast.bg-success {
    background-color: #198754 !important;
    color: #ffffff !important;
}

.toast.bg-warning {
    background-color: #ffc107 !important;
    color: #000000 !important;
}

.toast.bg-info {
    background-color: #0dcaf0 !important;
    color: #ffffff !important;
}

.toast .btn-close {
    filter: invert(1) grayscale(100%) brightness(200%) !important;
}

.toast .toast-body {
    padding: 0.75rem 1rem !important;
}

/* ===== MODAL STYLES ===== */
.modal-content {
    border-radius: 15px;
    border: none;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.modal-header {
    border-bottom: 1px solid #e9ecef;
    border-radius: 15px 15px 0 0;
}

.modal-footer {
    border-top: 1px solid #e9ecef;
    border-radius: 0 0 15px 15px;
}

/* ===== FORM SECTIONS ===== */
.form-section {
    background: white;
    border-radius: 15px;
    padding: 25px;
    margin-bottom: 25px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.form-section h4 {
    color: #495057;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #e9ecef;
}

/* ===== REPORT SECTIONS ===== */
.report-section {
    background: white;
    border-radius: 12px;
    padding: 25px;
    margin-bottom: 25px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.report-section h4 {
    color: #495057;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #e9ecef;
}

/* ===== PHOTO GALLERY ===== */
.photo-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 15px;
    margin-top: 15px;
}

.photo-gallery img {
    max-width: 200px;
    max-height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin: 5px;
    cursor: pointer;
    transition: transform 0.2s;
}

.photo-gallery img:hover {
    transform: scale(1.05);
}

.photo-item {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.photo-item img {
    width: 100%;
    height: 150px;
    object-fit: cover;
}

/* ===== DYNAMIC ITEMS ===== */
.personnel-item, .work-item {
    background: #f8f9fa;
    border-radius: 10px;
    padding: 15px;
    margin-bottom: 15px;
    border: 1px solid #e9ecef;
    position: relative;
}

.personnel-item:hover, .work-item:hover {
    background: #e9ecef;
}

.remove-item {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #dc3545;
    color: white;
    border: none;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.remove-item:hover {
    background: #c82333;
    transform: scale(1.1);
}

/* ===== PHOTO STYLES ===== */
.photo-preview {
    max-width: 150px;
    max-height: 150px;
    object-fit: cover;
    border-radius: 8px;
    margin: 5px;
}

.existing-photo {
    position: relative;
    display: inline-block;
}

.remove-photo {
    position: absolute;
    top: -10px;
    right: -10px;
    background: #dc3545;
    color: white;
    border-radius: 50%;
    width: 25px;
    height: 25px;
    text-align: center;
    line-height: 25px;
    cursor: pointer;
    font-weight: bold;
    font-size: 16px;
}

.remove-photo:hover {
    background: #c82333;
}

/* ===== MOBILE RESPONSIVE ===== */
@media (max-width: 991.98px) {
    .wrapper {
        flex-direction: column;
    }
    
    .sidebar {
        transform: translateX(-100%);
    }
    
    .sidebar.show {
        transform: translateX(0);
    }
    
    .main-content {
        margin-left: 0;
        width: 100%;
    }
    
    .sidebar-toggle {
        display: block;
    }
    
    .sidebar-overlay.show {
        display: block;
    }
    
    .container-fluid {
        padding-left: 15px;
        padding-right: 15px;
    }
    
    /* Mobile specific optimizations */
    .stat-card {
        margin-bottom: 15px;
    }
    
    .stat-card .d-flex {
        flex-direction: column;
        text-align: center;
    }
    
    .stat-card .stat-icon {
        margin: 0 auto 10px auto;
        width: 60px;
        height: 60px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
    }
    
    .stat-card h3 {
        font-size: 2rem;
        margin-bottom: 5px;
    }
    
    .stat-card-hover {
        transition: all 0.3s ease;
        cursor: pointer;
    }
    
    .stat-card-hover:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    }
    
    .card-header {
        padding: 15px;
    }
    
    .card-body {
        padding: 15px;
    }
    
    .btn {
        padding: 10px 15px;
        font-size: 14px;
    }
    
    .table-responsive {
        font-size: 14px;
    }
    
    .table th,
    .table td {
        padding: 8px;
    }
    
    .form-section {
        padding: 15px;
        margin-bottom: 15px;
    }
    
    .personnel-item, .work-item {
        padding: 10px;
        margin-bottom: 10px;
    }
}

/* ===== SIDEBAR TOGGLE & OVERLAY ===== */
.sidebar-toggle {
    position: fixed;
    top: 20px;
    left: 20px;
    z-index: 1001;
    display: none;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
    color: white;
    padding: 12px 15px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
    cursor: pointer;
}

.sidebar-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 999;
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.sidebar-overlay.show {
    display: block;
    opacity: 1;
}

/* ===== DESKTOP ===== */
@media (min-width: 992px) {
    .sidebar-toggle {
        display: none !important;
    }
}

/* ===== MOBILE ===== */
@media (max-width: 991px) {
    .sidebar-toggle {
        display: block !important;
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
        color: white !important;
        border: none !important;
        padding: 12px 15px !important;
        border-radius: 8px !important;
        box-shadow: 0 2px 10px rgba(0,0,0,0.2) !important;
        cursor: pointer !important;
        z-index: 1001 !important;
        position: fixed !important;
        top: 20px !important;
        left: 20px !important;
    }
    
    .main-content {
        margin-left: 0 !important;
        width: 100% !important;
        padding-top: 80px !important;
    }
    
    .sidebar {
        z-index: 1000 !important;
    }
    
    .container-fluid {
        padding-left: 15px !important;
        padding-right: 15px !important;
    }
}

/* ===== UTILITY CLASSES ===== */
.text-gradient {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.bg-gradient {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.shadow-custom {
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.rounded-custom {
    border-radius: 15px;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeIn 0.5s ease-out;
}

/* ===== SCROLLBAR STYLES ===== */
.sidebar::-webkit-scrollbar {
    width: 6px;
}

.sidebar::-webkit-scrollbar-track {
    background: rgba(255,255,255,0.1);
}

.sidebar::-webkit-scrollbar-thumb {
    background: rgba(255,255,255,0.3);
    border-radius: 3px;
}

.sidebar::-webkit-scrollbar-thumb:hover {
    background: rgba(255,255,255,0.5);
}

/* ===== LOG STYLES ===== */
.log-content {
    background: #1e1e1e;
    color: #d4d4d4;
    font-family: 'Courier New', monospace;
    font-size: 12px;
    padding: 20px;
    border-radius: 8px;
    max-height: 600px;
    overflow-y: auto;
    white-space: pre-wrap;
    word-wrap: break-word;
}

.log-line {
    margin: 2px 0;
    line-height: 1.4;
}

.log-timestamp {
    color: #569cd6;
}

.log-error {
    color: #f44336;
}

.log-success {
    color: #4caf50;
}

.log-info {
    color: #2196f3;
}

/* ===== LOGIN PAGE STYLES ===== */
body.login-page {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.login-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    overflow: hidden;
    max-width: 400px;
    width: 100%;
    margin: 20px;
}

.login-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 30px;
    text-align: center;
}

.login-body {
    padding: 30px;
}

.form-floating {
    margin-bottom: 20px;
}

.btn-login {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
    padding: 12px;
    font-weight: 600;
}

.btn-login:hover {
    background: linear-gradient(135deg, #5a6fd8 0%, #6a4190 100%);
}

.password-toggle {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: #6c757d;
    cursor: pointer;
}

/* ===== LOCATION SUGGESTIONS ===== */
.location-suggestions {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border: 1px solid #ddd;
    border-top: none;
    border-radius: 0 0 8px 8px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    z-index: 1000;
    max-height: 200px;
    overflow-y: auto;
}

.location-suggestion-item {
    padding: 10px 15px;
    cursor: pointer;
    border-bottom: 1px solid #f0f0f0;
    transition: background-color 0.2s;
}

.location-suggestion-item:hover {
    background-color: #f8f9fa;
}

.location-suggestion-item:last-child {
    border-bottom: none;
}

.location-suggestion-item .location-name {
    font-weight: 500;
    color: #333;
}

.location-suggestion-item .location-details {
    font-size: 0.85em;
    color: #666;
    margin-top: 2px;
}

/* ===== PERSONNEL ITEM STYLES ===== */
.personnel-item .btn-group {
    display: flex;
    gap: 5px;
}

/* ===== MOBILE RESPONSIVE ADDITIONS ===== */
@media (max-width: 991.98px) {
    .form-section {
        padding: 20px;
        margin-bottom: 20px;
    }
    
    .personnel-item {
        padding: 15px;
        margin-bottom: 15px;
    }
    
    .btn-group {
        flex-direction: column;
        gap: 5px;
    }
    
    .btn-group .btn {
        width: 100%;
    }
    
    .d-flex.gap-2 {
        flex-direction: column;
        gap: 10px !important;
    }
    
    .d-flex.gap-2 .btn {
        width: 100%;
    }
    
    .photo-gallery img {
        max-width: 150px;
        max-height: 150px;
    }
    
    .report-section {
        padding: 20px;
        margin-bottom: 20px;
    }
} 

/* Clickable rows */
.clickable-row:hover {
    background-color: #f8f9fa !important;
    transition: background-color 0.2s ease;
}

.clickable-row:active {
    background-color: #e9ecef !important;
} 

/* Report status row colors */
.status-beklemede {
    background-color: #fff3cd !important; /* Açık sarı */
}

.status-okundu {
    background-color: #d1edff !important; /* Açık mavi */
}

.status-uyari {
    background-color: #ffe6e6 !important; /* Açık kırmızı */
}

/* Status badges */
.badge-beklemede {
    background-color: #ffc107 !important;
    color: #000 !important;
}

.badge-okundu {
    background-color: #28a745 !important;
    color: #fff !important;
}

.badge-uyari {
    background-color: #dc3545 !important;
    color: #fff !important;
} 



.report-row td {
    background-color: transparent !important;
    background: transparent !important;
}

/* ===== MENU BADGE STYLES ===== */
.sidebar .nav-link .badge {
    position: absolute;
    top: 8px;
    right: 8px;
    font-size: 0.6em;
    min-width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: #ffc107 !important;
    color: #000 !important;
    font-weight: bold;
}

.sidebar .nav-link:hover .badge {
    background-color: #ffca2c !important;
}

/* ===== LOGIN PAGE RESPONSIVE ===== */
@media (max-width: 576px) {
    body.login-page {
        padding: 10px;
    }
    
    .login-card {
        margin: 10px;
        max-width: 100%;
    }
    
    .login-header {
        padding: 20px;
    }
    
    .login-body {
        padding: 20px;
    }
}

/* ===== DASHBOARD PROJECT ROWS ===== */
.clickable-row {
    transition: background-color 0.2s ease;
}

.clickable-row:hover {
    background-color: #f8f9fa !important;
}

.clickable-row:active {
    background-color: #e9ecef !important;
}

/* ===== PROFILE PAGE STYLES ===== */
.profile-card {
    border: none;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border-radius: 15px;
    overflow: hidden;
}

.avatar-circle {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
}

.role-badge .badge {
    border-radius: 25px;
    font-weight: 500;
}

.profile-stats {
    border-top: 1px solid #e9ecef;
    padding-top: 20px;
    margin-top: 20px;
}

.stat-item {
    padding: 10px;
}

.stat-number {
    font-size: 1.5rem;
    font-weight: bold;
    color: #007bff;
}

.stat-label {
    font-size: 0.8rem;
    color: #6c757d;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.info-item {
    padding: 15px;
    border-radius: 8px;
    background: #f8f9fa;
    border-left: 4px solid #007bff;
}

/* .info-item:hover {
    background: #e9ecef;
    transform: translateX(5px);
} */

.info-label {
    font-size: 0.9rem;
    color: #6c757d;
    margin-bottom: 5px;
    font-weight: 500;
}

.info-value {
    font-size: 1.1rem;
    font-weight: 600;
    color: #495057;
}

.action-btn {
    border: 2px solid;
    border-radius: 12px;
    padding: 25px 15px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 120px;
}

.action-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.action-btn.btn-outline-primary:hover {
    background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
    border-color: #007bff;
    color: white;
}

.action-btn.btn-outline-warning:hover {
    background: linear-gradient(135deg, #ffc107 0%, #e0a800 100%);
    border-color: #ffc107;
    color: white;
}

.action-icon {
    margin-bottom: 10px;
}

.action-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 5px;
}

.action-desc {
    font-size: 0.85rem;
    color: #6c757d;
    text-align: center;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .profile-card {
        margin-bottom: 20px;
    }
    
    .action-btn {
        min-height: 100px;
        padding: 20px 15px;
    }
    
    .stat-number {
        font-size: 1.2rem;
    }
}

/* PROJECT INFO STYLES */
.info-item {
    padding: 0.5rem 0;
    border-bottom: 1px solid #f8f9fa;
}

.info-item:last-child {
    border-bottom: none;
}

.info-value {
    font-weight: 500;
    color: #495057;
    line-height: 1.4;
}

.description-text {
    background-color: #f8f9fa;
    padding: 0.75rem;
    border-radius: 0.375rem;
    border-left: 3px solid #0d6efd;
    font-size: 0.9rem;
    line-height: 1.5;
}

.card-header.bg-light {
    border-bottom: 2px solid #e9ecef;
}

.card-header.bg-light h6 {
    font-weight: 600;
    letter-spacing: 0.5px;
} 



.report-row td {
    background-color: transparent !important;
    background: transparent !important;
}

/* ===== MENU BADGE STYLES ===== */
.sidebar .nav-link .badge {
    position: absolute;
    top: 8px;
    right: 8px;
    font-size: 0.6em;
    min-width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: #ffc107 !important;
    color: #000 !important;
    font-weight: bold;
}

.sidebar .nav-link:hover .badge {
    background-color: #ffca2c !important;
}

/* ===== LOGIN PAGE RESPONSIVE ===== */
@media (max-width: 576px) {
    body.login-page {
        padding: 10px;
    }
    
    .login-card {
        margin: 10px;
        max-width: 100%;
    }
    
    .login-header {
        padding: 20px;
    }
    
    .login-body {
        padding: 20px;
    }
}

/* ===== DASHBOARD PROJECT ROWS ===== */
.clickable-row {
    transition: background-color 0.2s ease;
}

.clickable-row:hover {
    background-color: #f8f9fa !important;
}

.clickable-row:active {
    background-color: #e9ecef !important;
}

/* ===== PROFILE PAGE STYLES ===== */
.profile-card {
    border: none;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border-radius: 15px;
    overflow: hidden;
}

.avatar-circle {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
}

.role-badge .badge {
    border-radius: 25px;
    font-weight: 500;
}

.profile-stats {
    border-top: 1px solid #e9ecef;
    padding-top: 20px;
    margin-top: 20px;
}

.stat-item {
    padding: 10px;
}

.stat-number {
    font-size: 1.5rem;
    font-weight: bold;
    color: #007bff;
}

.stat-label {
    font-size: 0.8rem;
    color: #6c757d;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.info-item {
    padding: 15px;
    border-radius: 8px;
    background: #f8f9fa;
    border-left: 4px solid #007bff;
}

/* .info-item:hover {
    background: #e9ecef;
    transform: translateX(5px);
} */

.info-label {
    font-size: 0.9rem;
    color: #6c757d;
    margin-bottom: 5px;
    font-weight: 500;
}

.info-value {
    font-size: 1.1rem;
    font-weight: 600;
    color: #495057;
}

.action-btn {
    border: 2px solid;
    border-radius: 12px;
    padding: 25px 15px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 120px;
}

.action-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.action-btn.btn-outline-primary:hover {
    background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
    border-color: #007bff;
    color: white;
}

.action-btn.btn-outline-warning:hover {
    background: linear-gradient(135deg, #ffc107 0%, #e0a800 100%);
    border-color: #ffc107;
    color: white;
}

.action-icon {
    margin-bottom: 10px;
}

.action-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 5px;
}

.action-desc {
    font-size: 0.85rem;
    color: #6c757d;
    text-align: center;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .profile-card {
        margin-bottom: 20px;
    }
    
    .action-btn {
        min-height: 100px;
        padding: 20px 15px;
    }
    
    .stat-number {
        font-size: 1.2rem;
    }
}

/* WORKING HOURS CARD STYLES */
.working-day-card {
    border: 1px solid #e9ecef;
    border-radius: 8px;
    transition: all 0.3s ease;
    height: 100%;
}

.working-day-card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.working-day-card .card-header {
    border-bottom: 1px solid #e9ecef;
    padding: 0.75rem;
}

.working-day-card .card-body {
    padding: 0.75rem;
}

.working-day-card .form-check-input {
    cursor: pointer;
}

.working-day-card .form-control-sm {
    font-size: 0.875rem;
    padding: 0.375rem 0.5rem;
}

.working-day-card .form-label {
    font-size: 0.75rem;
    margin-bottom: 0.25rem;
}

/* Hızlı ayarlar butonları */
.btn-outline-primary:hover,
.btn-outline-success:hover,
.btn-outline-warning:hover {
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

/* Disabled input stilleri */
.working-day-card .form-control:disabled {
    background-color: #f8f9fa;
    opacity: 0.6;
    cursor: not-allowed;
}

/* Responsive düzenlemeler */
@media (max-width: 768px) {
    .working-day-card {
        margin-bottom: 1rem;
    }
    
    .working-day-card .card-header h6 {
        font-size: 0.875rem;
    }
} 



.report-row td {
    background-color: transparent !important;
    background: transparent !important;
}

/* ===== MENU BADGE STYLES ===== */
.sidebar .nav-link .badge {
    position: absolute;
    top: 8px;
    right: 8px;
    font-size: 0.6em;
    min-width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: #ffc107 !important;
    color: #000 !important;
    font-weight: bold;
}

.sidebar .nav-link:hover .badge {
    background-color: #ffca2c !important;
}

/* ===== LOGIN PAGE RESPONSIVE ===== */
@media (max-width: 576px) {
    body.login-page {
        padding: 10px;
    }
    
    .login-card {
        margin: 10px;
        max-width: 100%;
    }
    
    .login-header {
        padding: 20px;
    }
    
    .login-body {
        padding: 20px;
    }
}

/* ===== DASHBOARD PROJECT ROWS ===== */
.clickable-row {
    transition: background-color 0.2s ease;
}

.clickable-row:hover {
    background-color: #f8f9fa !important;
}

.clickable-row:active {
    background-color: #e9ecef !important;
}

/* ===== PROFILE PAGE STYLES ===== */
.profile-card {
    border: none;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border-radius: 15px;
    overflow: hidden;
}

.avatar-circle {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
}

.role-badge .badge {
    border-radius: 25px;
    font-weight: 500;
}

.profile-stats {
    border-top: 1px solid #e9ecef;
    padding-top: 20px;
    margin-top: 20px;
}

.stat-item {
    padding: 10px;
}

.stat-number {
    font-size: 1.5rem;
    font-weight: bold;
    color: #007bff;
}

.stat-label {
    font-size: 0.8rem;
    color: #6c757d;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.info-item {
    padding: 15px;
    border-radius: 8px;
    background: #f8f9fa;
    border-left: 4px solid #007bff;
}

/* .info-item:hover {
    background: #e9ecef;
    transform: translateX(5px);
} */

.info-label {
    font-size: 0.9rem;
    color: #6c757d;
    margin-bottom: 5px;
    font-weight: 500;
}

.info-value {
    font-size: 1.1rem;
    font-weight: 600;
    color: #495057;
}

.action-btn {
    border: 2px solid;
    border-radius: 12px;
    padding: 25px 15px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 120px;
}

.action-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.action-btn.btn-outline-primary:hover {
    background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
    border-color: #007bff;
    color: white;
}

.action-btn.btn-outline-warning:hover {
    background: linear-gradient(135deg, #ffc107 0%, #e0a800 100%);
    border-color: #ffc107;
    color: white;
}

.action-icon {
    margin-bottom: 10px;
}

.action-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 5px;
}

.action-desc {
    font-size: 0.85rem;
    color: #6c757d;
    text-align: center;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .profile-card {
        margin-bottom: 20px;
    }
    
    .action-btn {
        min-height: 100px;
        padding: 20px 15px;
    }
    
    .stat-number {
        font-size: 1.2rem;
    }
} 



.report-row td {
    background-color: transparent !important;
    background: transparent !important;
}

/* ===== MENU BADGE STYLES ===== */
.sidebar .nav-link .badge {
    position: absolute;
    top: 8px;
    right: 8px;
    font-size: 0.6em;
    min-width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: #ffc107 !important;
    color: #000 !important;
    font-weight: bold;
}

.sidebar .nav-link:hover .badge {
    background-color: #ffca2c !important;
}

/* ===== LOGIN PAGE RESPONSIVE ===== */
@media (max-width: 576px) {
    body.login-page {
        padding: 10px;
    }
    
    .login-card {
        margin: 10px;
        max-width: 100%;
    }
    
    .login-header {
        padding: 20px;
    }
    
    .login-body {
        padding: 20px;
    }
} 



.report-row td {
    background-color: transparent !important;
    background: transparent !important;
}

/* ===== MENU BADGE STYLES ===== */
.sidebar .nav-link .badge {
    position: absolute;
    top: 8px;
    right: 8px;
    font-size: 0.6em;
    min-width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: #ffc107 !important;
    color: #000 !important;
    font-weight: bold;
}

.sidebar .nav-link:hover .badge {
    background-color: #ffca2c !important;
}

/* ===== LOGIN PAGE RESPONSIVE ===== */
@media (max-width: 576px) {
    body.login-page {
        padding: 10px;
    }
    
    .login-card {
        margin: 10px;
        max-width: 100%;
    }
    
    .login-header {
        padding: 20px;
    }
    
    .login-body {
        padding: 20px;
    }
} 



.report-row td {
    background-color: transparent !important;
    background: transparent !important;
}

/* ===== MENU BADGE STYLES ===== */
.sidebar .nav-link .badge {
    position: absolute;
    top: 8px;
    right: 8px;
    font-size: 0.6em;
    min-width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: #ffc107 !important;
    color: #000 !important;
    font-weight: bold;
}

.sidebar .nav-link:hover .badge {
    background-color: #ffca2c !important;
}

/* ===== LOGIN PAGE RESPONSIVE ===== */
@media (max-width: 576px) {
    body.login-page {
        padding: 10px;
    }
    
    .login-card {
        margin: 10px;
        max-width: 100%;
    }
    
    .login-header {
        padding: 20px;
    }
    
    .login-body {
        padding: 20px;
    }
} 



.report-row td {
    background-color: transparent !important;
    background: transparent !important;
}

/* ===== MENU BADGE STYLES ===== */
.sidebar .nav-link .badge {
    position: absolute;
    top: 8px;
    right: 8px;
    font-size: 0.6em;
    min-width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: #ffc107 !important;
    color: #000 !important;
    font-weight: bold;
}

.sidebar .nav-link:hover .badge {
    background-color: #ffca2c !important;
}

/* ===== LOGIN PAGE RESPONSIVE ===== */
@media (max-width: 576px) {
    body.login-page {
        padding: 10px;
    }
    
    .login-card {
        margin: 10px;
        max-width: 100%;
    }
    
    .login-header {
        padding: 20px;
    }
    
    .login-body {
        padding: 20px;
    }
} 



.report-row td {
    background-color: transparent !important;
    background: transparent !important;
}

/* ===== MENU BADGE STYLES ===== */
.sidebar .nav-link .badge {
    position: absolute;
    top: 8px;
    right: 8px;
    font-size: 0.6em;
    min-width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: #ffc107 !important;
    color: #000 !important;
    font-weight: bold;
}

.sidebar .nav-link:hover .badge {
    background-color: #ffca2c !important;
}

/* ===== LOGIN PAGE RESPONSIVE ===== */
@media (max-width: 576px) {
    body.login-page {
        padding: 10px;
    }
    
    .login-card {
        margin: 10px;
        max-width: 100%;
    }
    
    .login-header {
        padding: 20px;
    }
    
    .login-body {
        padding: 20px;
    }
} 



.report-row td {
    background-color: transparent !important;
    background: transparent !important;
}

/* ===== MENU BADGE STYLES ===== */
.sidebar .nav-link .badge {
    position: absolute;
    top: 8px;
    right: 8px;
    font-size: 0.6em;
    min-width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: #ffc107 !important;
    color: #000 !important;
    font-weight: bold;
}

.sidebar .nav-link:hover .badge {
    background-color: #ffca2c !important;
}

/* ===== LOGIN PAGE RESPONSIVE ===== */
@media (max-width: 576px) {
    body.login-page {
        padding: 10px;
    }
    
    .login-card {
        margin: 10px;
        max-width: 100%;
    }
    
    .login-header {
        padding: 20px;
    }
    
    .login-body {
        padding: 20px;
    }
} 



.report-row td {
    background-color: transparent !important;
    background: transparent !important;
}

/* ===== MENU BADGE STYLES ===== */
.sidebar .nav-link .badge {
    position: absolute;
    top: 8px;
    right: 8px;
    font-size: 0.6em;
    min-width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: #ffc107 !important;
    color: #000 !important;
    font-weight: bold;
}

.sidebar .nav-link:hover .badge {
    background-color: #ffca2c !important;
}

/* ===== LOGIN PAGE RESPONSIVE ===== */
@media (max-width: 576px) {
    body.login-page {
        padding: 10px;
    }
    
    .login-card {
        margin: 10px;
        max-width: 100%;
    }
    
    .login-header {
        padding: 20px;
    }
    
    .login-body {
        padding: 20px;
    }
} 



.report-row td {
    background-color: transparent !important;
    background: transparent !important;
}

/* ===== MENU BADGE STYLES ===== */
.sidebar .nav-link .badge {
    position: absolute;
    top: 8px;
    right: 8px;
    font-size: 0.6em;
    min-width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: #ffc107 !important;
    color: #000 !important;
    font-weight: bold;
}

.sidebar .nav-link:hover .badge {
    background-color: #ffca2c !important;
}

/* ===== LOGIN PAGE RESPONSIVE ===== */
@media (max-width: 576px) {
    body.login-page {
        padding: 10px;
    }
    
    .login-card {
        margin: 10px;
        max-width: 100%;
    }
    
    .login-header {
        padding: 20px;
    }
    
    .login-body {
        padding: 20px;
    }
} 



.report-row td {
    background-color: transparent !important;
    background: transparent !important;
}

/* ===== MENU BADGE STYLES ===== */
.sidebar .nav-link .badge {
    position: absolute;
    top: 8px;
    right: 8px;
    font-size: 0.6em;
    min-width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: #ffc107 !important;
    color: #000 !important;
    font-weight: bold;
}

.sidebar .nav-link:hover .badge {
    background-color: #ffca2c !important;
}

/* ===== LOGIN PAGE RESPONSIVE ===== */
@media (max-width: 576px) {
    body.login-page {
        padding: 10px;
    }
    
    .login-card {
        margin: 10px;
        max-width: 100%;
    }
    
    .login-header {
        padding: 20px;
    }
    
    .login-body {
        padding: 20px;
    }
} 



.report-row td {
    background-color: transparent !important;
    background: transparent !important;
}

/* ===== MENU BADGE STYLES ===== */
.sidebar .nav-link .badge {
    position: absolute;
    top: 8px;
    right: 8px;
    font-size: 0.6em;
    min-width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: #ffc107 !important;
    color: #000 !important;
    font-weight: bold;
}

.sidebar .nav-link:hover .badge {
    background-color: #ffca2c !important;
}

/* ===== LOGIN PAGE RESPONSIVE ===== */
@media (max-width: 576px) {
    body.login-page {
        padding: 10px;
    }
    
    .login-card {
        margin: 10px;
        max-width: 100%;
    }
    
    .login-header {
        padding: 20px;
    }
    
    .login-body {
        padding: 20px;
    }
} 



.report-row td {
    background-color: transparent !important;
    background: transparent !important;
}

/* ===== MENU BADGE STYLES ===== */
.sidebar .nav-link .badge {
    position: absolute;
    top: 8px;
    right: 8px;
    font-size: 0.6em;
    min-width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: #ffc107 !important;
    color: #000 !important;
    font-weight: bold;
}

.sidebar .nav-link:hover .badge {
    background-color: #ffca2c !important;
}

/* ===== LOGIN PAGE RESPONSIVE ===== */
@media (max-width: 576px) {
    body.login-page {
        padding: 10px;
    }
    
    .login-card {
        margin: 10px;
        max-width: 100%;
    }
    
    .login-header {
        padding: 20px;
    }
    
    .login-body {
        padding: 20px;
    }
} 



.report-row td {
    background-color: transparent !important;
    background: transparent !important;
}

/* ===== MENU BADGE STYLES ===== */
.sidebar .nav-link .badge {
    position: absolute;
    top: 8px;
    right: 8px;
    font-size: 0.6em;
    min-width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: #ffc107 !important;
    color: #000 !important;
    font-weight: bold;
}

.sidebar .nav-link:hover .badge {
    background-color: #ffca2c !important;
}

/* ===== LOGIN PAGE RESPONSIVE ===== */
@media (max-width: 576px) {
    body.login-page {
        padding: 10px;
    }
    
    .login-card {
        margin: 10px;
        max-width: 100%;
    }
    
    .login-header {
        padding: 20px;
    }
    
    .login-body {
        padding: 20px;
    }
} 



.report-row td {
    background-color: transparent !important;
    background: transparent !important;
}

/* ===== MENU BADGE STYLES ===== */
.sidebar .nav-link .badge {
    position: absolute;
    top: 8px;
    right: 8px;
    font-size: 0.6em;
    min-width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: #ffc107 !important;
    color: #000 !important;
    font-weight: bold;
}

.sidebar .nav-link:hover .badge {
    background-color: #ffca2c !important;
}

/* ===== LOGIN PAGE RESPONSIVE ===== */
@media (max-width: 576px) {
    body.login-page {
        padding: 10px;
    }
    
    .login-card {
        margin: 10px;
        max-width: 100%;
    }
    
    .login-header {
        padding: 20px;
    }
    
    .login-body {
        padding: 20px;
    }
} 



.report-row td {
    background-color: transparent !important;
    background: transparent !important;
}

/* ===== MENU BADGE STYLES ===== */
.sidebar .nav-link .badge {
    position: absolute;
    top: 8px;
    right: 8px;
    font-size: 0.6em;
    min-width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: #ffc107 !important;
    color: #000 !important;
    font-weight: bold;
}

.sidebar .nav-link:hover .badge {
    background-color: #ffca2c !important;
}

/* ===== LOGIN PAGE RESPONSIVE ===== */
@media (max-width: 576px) {
    body.login-page {
        padding: 10px;
    }
    
    .login-card {
        margin: 10px;
        max-width: 100%;
    }
    
    .login-header {
        padding: 20px;
    }
    
    .login-body {
        padding: 20px;
    }
} 



.report-row td {
    background-color: transparent !important;
    background: transparent !important;
}

/* ===== MENU BADGE STYLES ===== */
.sidebar .nav-link .badge {
    position: absolute;
    top: 8px;
    right: 8px;
    font-size: 0.6em;
    min-width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: #ffc107 !important;
    color: #000 !important;
    font-weight: bold;
}

.sidebar .nav-link:hover .badge {
    background-color: #ffca2c !important;
}

/* ===== LOGIN PAGE RESPONSIVE ===== */
@media (max-width: 576px) {
    body.login-page {
        padding: 10px;
    }
    
    .login-card {
        margin: 10px;
        max-width: 100%;
    }
    
    .login-header {
        padding: 20px;
    }
    
    .login-body {
        padding: 20px;
    }
} 



.report-row td {
    background-color: transparent !important;
    background: transparent !important;
}

/* ===== MENU BADGE STYLES ===== */
.sidebar .nav-link .badge {
    position: absolute;
    top: 8px;
    right: 8px;
    font-size: 0.6em;
    min-width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: #ffc107 !important;
    color: #000 !important;
    font-weight: bold;
}

.sidebar .nav-link:hover .badge {
    background-color: #ffca2c !important;
}

/* ===== LOGIN PAGE RESPONSIVE ===== */
@media (max-width: 576px) {
    body.login-page {
        padding: 10px;
    }
    
    .login-card {
        margin: 10px;
        max-width: 100%;
    }
    
    .login-header {
        padding: 20px;
    }
    
    .login-body {
        padding: 20px;
    }
} 



.report-row td {
    background-color: transparent !important;
    background: transparent !important;
}

/* ===== MENU BADGE STYLES ===== */
.sidebar .nav-link .badge {
    position: absolute;
    top: 8px;
    right: 8px;
    font-size: 0.6em;
    min-width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: #ffc107 !important;
    color: #000 !important;
    font-weight: bold;
}

.sidebar .nav-link:hover .badge {
    background-color: #ffca2c !important;
}

/* ===== LOGIN PAGE RESPONSIVE ===== */
@media (max-width: 576px) {
    body.login-page {
        padding: 10px;
    }
    
    .login-card {
        margin: 10px;
        max-width: 100%;
    }
    
    .login-header {
        padding: 20px;
    }
    
    .login-body {
        padding: 20px;
    }
} 



.report-row td {
    background-color: transparent !important;
    background: transparent !important;
}

/* ===== MENU BADGE STYLES ===== */
.sidebar .nav-link .badge {
    position: absolute;
    top: 8px;
    right: 8px;
    font-size: 0.6em;
    min-width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: #ffc107 !important;
    color: #000 !important;
    font-weight: bold;
}

.sidebar .nav-link:hover .badge {
    background-color: #ffca2c !important;
}

/* ===== LOGIN PAGE RESPONSIVE ===== */
@media (max-width: 576px) {
    body.login-page {
        padding: 10px;
    }
    
    .login-card {
        margin: 10px;
        max-width: 100%;
    }
    
    .login-header {
        padding: 20px;
    }
    
    .login-body {
        padding: 20px;
    }
} 



.report-row td {
    background-color: transparent !important;
    background: transparent !important;
}

/* ===== MENU BADGE STYLES ===== */
.sidebar .nav-link .badge {
    position: absolute;
    top: 8px;
    right: 8px;
    font-size: 0.6em;
    min-width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: #ffc107 !important;
    color: #000 !important;
    font-weight: bold;
}

.sidebar .nav-link:hover .badge {
    background-color: #ffca2c !important;
}

/* ===== LOGIN PAGE RESPONSIVE ===== */
@media (max-width: 576px) {
    body.login-page {
        padding: 10px;
    }
    
    .login-card {
        margin: 10px;
        max-width: 100%;
    }
    
    .login-header {
        padding: 20px;
    }
    
    .login-body {
        padding: 20px;
    }
} 



.report-row td {
    background-color: transparent !important;
    background: transparent !important;
}

/* ===== MENU BADGE STYLES ===== */
.sidebar .nav-link .badge {
    position: absolute;
    top: 8px;
    right: 8px;
    font-size: 0.6em;
    min-width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: #ffc107 !important;
    color: #000 !important;
    font-weight: bold;
}

.sidebar .nav-link:hover .badge {
    background-color: #ffca2c !important;
}

/* ===== LOGIN PAGE RESPONSIVE ===== */
@media (max-width: 576px) {
    body.login-page {
        padding: 10px;
    }
    
    .login-card {
        margin: 10px;
        max-width: 100%;
    }
    
    .login-header {
        padding: 20px;
    }
    
    .login-body {
        padding: 20px;
    }
} 



.report-row td {
    background-color: transparent !important;
    background: transparent !important;
}

/* ===== MENU BADGE STYLES ===== */
.sidebar .nav-link .badge {
    position: absolute;
    top: 8px;
    right: 8px;
    font-size: 0.6em;
    min-width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: #ffc107 !important;
    color: #000 !important;
    font-weight: bold;
}

.sidebar .nav-link:hover .badge {
    background-color: #ffca2c !important;
}

/* ===== LOGIN PAGE RESPONSIVE ===== */
@media (max-width: 576px) {
    body.login-page {
        padding: 10px;
    }
    
    .login-card {
        margin: 10px;
        max-width: 100%;
    }
    
    .login-header {
        padding: 20px;
    }
    
    .login-body {
        padding: 20px;
    }
} 



.report-row td {
    background-color: transparent !important;
    background: transparent !important;
}

/* ===== MENU BADGE STYLES ===== */
.sidebar .nav-link .badge {
    position: absolute;
    top: 8px;
    right: 8px;
    font-size: 0.6em;
    min-width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: #ffc107 !important;
    color: #000 !important;
    font-weight: bold;
}

.sidebar .nav-link:hover .badge {
    background-color: #ffca2c !important;
}

/* ===== LOGIN PAGE RESPONSIVE ===== */
@media (max-width: 576px) {
    body.login-page {
        padding: 10px;
    }
    
    .login-card {
        margin: 10px;
        max-width: 100%;
    }
    
    .login-header {
        padding: 20px;
    }
    
    .login-body {
        padding: 20px;
    }
} 



.report-row td {
    background-color: transparent !important;
    background: transparent !important;
}

/* ===== MENU BADGE STYLES ===== */
.sidebar .nav-link .badge {
    position: absolute;
    top: 8px;
    right: 8px;
    font-size: 0.6em;
    min-width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: #ffc107 !important;
    color: #000 !important;
    font-weight: bold;
}

.sidebar .nav-link:hover .badge {
    background-color: #ffca2c !important;
}

/* ===== LOGIN PAGE RESPONSIVE ===== */
@media (max-width: 576px) {
    body.login-page {
        padding: 10px;
    }
    
    .login-card {
        margin: 10px;
        max-width: 100%;
    }
    
    .login-header {
        padding: 20px;
    }
    
    .login-body {
        padding: 20px;
    }
} 



.report-row td {
    background-color: transparent !important;
    background: transparent !important;
}

/* ===== MENU BADGE STYLES ===== */
.sidebar .nav-link .badge {
    position: absolute;
    top: 8px;
    right: 8px;
    font-size: 0.6em;
    min-width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: #ffc107 !important;
    color: #000 !important;
    font-weight: bold;
}

.sidebar .nav-link:hover .badge {
    background-color: #ffca2c !important;
}

/* ===== LOGIN PAGE RESPONSIVE ===== */
@media (max-width: 576px) {
    body.login-page {
        padding: 10px;
    }
    
    .login-card {
        margin: 10px;
        max-width: 100%;
    }
    
    .login-header {
        padding: 20px;
    }
    
    .login-body {
        padding: 20px;
    }
} 



.report-row td {
    background-color: transparent !important;
    background: transparent !important;
}

/* ===== MENU BADGE STYLES ===== */
.sidebar .nav-link .badge {
    position: absolute;
    top: 8px;
    right: 8px;
    font-size: 0.6em;
    min-width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: #ffc107 !important;
    color: #000 !important;
    font-weight: bold;
}

.sidebar .nav-link:hover .badge {
    background-color: #ffca2c !important;
}

/* ===== LOGIN PAGE RESPONSIVE ===== */
@media (max-width: 576px) {
    body.login-page {
        padding: 10px;
    }
    
    .login-card {
        margin: 10px;
        max-width: 100%;
    }
    
    .login-header {
        padding: 20px;
    }
    
    .login-body {
        padding: 20px;
    }
} 



.report-row td {
    background-color: transparent !important;
    background: transparent !important;
}

/* ===== MENU BADGE STYLES ===== */
.sidebar .nav-link .badge {
    position: absolute;
    top: 8px;
    right: 8px;
    font-size: 0.6em;
    min-width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: #ffc107 !important;
    color: #000 !important;
    font-weight: bold;
}

.sidebar .nav-link:hover .badge {
    background-color: #ffca2c !important;
}

/* ===== LOGIN PAGE RESPONSIVE ===== */
@media (max-width: 576px) {
    body.login-page {
        padding: 10px;
    }
    
    .login-card {
        margin: 10px;
        max-width: 100%;
    }
    
    .login-header {
        padding: 20px;
    }
    
    .login-body {
        padding: 20px;
    }
} 



.report-row td {
    background-color: transparent !important;
    background: transparent !important;
}

/* ===== MENU BADGE STYLES ===== */
.sidebar .nav-link .badge {
    position: absolute;
    top: 8px;
    right: 8px;
    font-size: 0.6em;
    min-width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: #ffc107 !important;
    color: #000 !important;
    font-weight: bold;
}

.sidebar .nav-link:hover .badge {
    background-color: #ffca2c !important;
}

/* ===== LOGIN PAGE RESPONSIVE ===== */
@media (max-width: 576px) {
    body.login-page {
        padding: 10px;
    }
    
    .login-card {
        margin: 10px;
        max-width: 100%;
    }
    
    .login-header {
        padding: 20px;
    }
    
    .login-body {
        padding: 20px;
    }
} 



.report-row td {
    background-color: transparent !important;
    background: transparent !important;
}

/* ===== MENU BADGE STYLES ===== */
.sidebar .nav-link .badge {
    position: absolute;
    top: 8px;
    right: 8px;
    font-size: 0.6em;
    min-width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: #ffc107 !important;
    color: #000 !important;
    font-weight: bold;
}

.sidebar .nav-link:hover .badge {
    background-color: #ffca2c !important;
}

/* ===== LOGIN PAGE RESPONSIVE ===== */
@media (max-width: 576px) {
    body.login-page {
        padding: 10px;
    }
    
    .login-card {
        margin: 10px;
        max-width: 100%;
    }
    
    .login-header {
        padding: 20px;
    }
    
    .login-body {
        padding: 20px;
    }
} 



.report-row td {
    background-color: transparent !important;
    background: transparent !important;
}

/* ===== MENU BADGE STYLES ===== */
.sidebar .nav-link .badge {
    position: absolute;
    top: 8px;
    right: 8px;
    font-size: 0.6em;
    min-width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: #ffc107 !important;
    color: #000 !important;
    font-weight: bold;
}

.sidebar .nav-link:hover .badge {
    background-color: #ffca2c !important;
}

/* ===== LOGIN PAGE RESPONSIVE ===== */
@media (max-width: 576px) {
    body.login-page {
        padding: 10px;
    }
    
    .login-card {
        margin: 10px;
        max-width: 100%;
    }
    
    .login-header {
        padding: 20px;
    }
    
    .login-body {
        padding: 20px;
    }
} 



.report-row td {
    background-color: transparent !important;
    background: transparent !important;
}

/* ===== MENU BADGE STYLES ===== */
.sidebar .nav-link .badge {
    position: absolute;
    top: 8px;
    right: 8px;
    font-size: 0.6em;
    min-width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: #ffc107 !important;
    color: #000 !important;
    font-weight: bold;
}

.sidebar .nav-link:hover .badge {
    background-color: #ffca2c !important;
}

/* ===== LOGIN PAGE RESPONSIVE ===== */
@media (max-width: 576px) {
    body.login-page {
        padding: 10px;
    }
    
    .login-card {
        margin: 10px;
        max-width: 100%;
    }
    
    .login-header {
        padding: 20px;
    }
    
    .login-body {
        padding: 20px;
    }
} 



.report-row td {
    background-color: transparent !important;
    background: transparent !important;
}

/* ===== MENU BADGE STYLES ===== */
.sidebar .nav-link .badge {
    position: absolute;
    top: 8px;
    right: 8px;
    font-size: 0.6em;
    min-width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: #ffc107 !important;
    color: #000 !important;
    font-weight: bold;
}

.sidebar .nav-link:hover .badge {
    background-color: #ffca2c !important;
}

/* ===== LOGIN PAGE RESPONSIVE ===== */
@media (max-width: 576px) {
    body.login-page {
        padding: 10px;
    }
    
    .login-card {
        margin: 10px;
        max-width: 100%;
    }
    
    .login-header {
        padding: 20px;
    }
    
    .login-body {
        padding: 20px;
    }
} 



.report-row td {
    background-color: transparent !important;
    background: transparent !important;
}

/* ===== MENU BADGE STYLES ===== */
.sidebar .nav-link .badge {
    position: absolute;
    top: 8px;
    right: 8px;
    font-size: 0.6em;
    min-width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: #ffc107 !important;
    color: #000 !important;
    font-weight: bold;
}

.sidebar .nav-link:hover .badge {
    background-color: #ffca2c !important;
}

/* ===== LOGIN PAGE RESPONSIVE ===== */
@media (max-width: 576px) {
    body.login-page {
        padding: 10px;
    }
    
    .login-card {
        margin: 10px;
        max-width: 100%;
    }
    
    .login-header {
        padding: 20px;
    }
    
    .login-body {
        padding: 20px;
    }
} 



.report-row td {
    background-color: transparent !important;
    background: transparent !important;
}

/* ===== MENU BADGE STYLES ===== */
.sidebar .nav-link .badge {
    position: absolute;
    top: 8px;
    right: 8px;
    font-size: 0.6em;
    min-width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: #ffc107 !important;
    color: #000 !important;
    font-weight: bold;
}

.sidebar .nav-link:hover .badge {
    background-color: #ffca2c !important;
}

/* ===== LOGIN PAGE RESPONSIVE ===== */
@media (max-width: 576px) {
    body.login-page {
        padding: 10px;
    }
    
    .login-card {
        margin: 10px;
        max-width: 100%;
    }
    
    .login-header {
        padding: 20px;
    }
    
    .login-body {
        padding: 20px;
    }
} 



.report-row td {
    background-color: transparent !important;
    background: transparent !important;
}

/* ===== MENU BADGE STYLES ===== */
.sidebar .nav-link .badge {
    position: absolute;
    top: 8px;
    right: 8px;
    font-size: 0.6em;
    min-width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: #ffc107 !important;
    color: #000 !important;
    font-weight: bold;
}

.sidebar .nav-link:hover .badge {
    background-color: #ffca2c !important;
}

/* ===== LOGIN PAGE RESPONSIVE ===== */
@media (max-width: 576px) {
    body.login-page {
        padding: 10px;
    }
    
    .login-card {
        margin: 10px;
        max-width: 100%;
    }
    
    .login-header {
        padding: 20px;
    }
    
    .login-body {
        padding: 20px;
    }
} 



.report-row td {
    background-color: transparent !important;
    background: transparent !important;
}

/* ===== MENU BADGE STYLES ===== */
.sidebar .nav-link .badge {
    position: absolute;
    top: 8px;
    right: 8px;
    font-size: 0.6em;
    min-width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: #ffc107 !important;
    color: #000 !important;
    font-weight: bold;
}

.sidebar .nav-link:hover .badge {
    background-color: #ffca2c !important;
}

/* ===== LOGIN PAGE RESPONSIVE ===== */
@media (max-width: 576px) {
    body.login-page {
        padding: 10px;
    }
    
    .login-card {
        margin: 10px;
        max-width: 100%;
    }
    
    .login-header {
        padding: 20px;
    }
    
    .login-body {
        padding: 20px;
    }
} 



.report-row td {
    background-color: transparent !important;
    background: transparent !important;
}

/* ===== MENU BADGE STYLES ===== */
.sidebar .nav-link .badge {
    position: absolute;
    top: 8px;
    right: 8px;
    font-size: 0.6em;
    min-width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: #ffc107 !important;
    color: #000 !important;
    font-weight: bold;
}

.sidebar .nav-link:hover .badge {
    background-color: #ffca2c !important;
}

/* ===== LOGIN PAGE RESPONSIVE ===== */
@media (max-width: 576px) {
    body.login-page {
        padding: 10px;
    }
    
    .login-card {
        margin: 10px;
        max-width: 100%;
    }
    
    .login-header {
        padding: 20px;
    }
    
    .login-body {
        padding: 20px;
    }
} 



.report-row td {
    background-color: transparent !important;
    background: transparent !important;
}

/* ===== MENU BADGE STYLES ===== */
.sidebar .nav-link .badge {
    position: absolute;
    top: 8px;
    right: 8px;
    font-size: 0.6em;
    min-width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: #ffc107 !important;
    color: #000 !important;
    font-weight: bold;
}

.sidebar .nav-link:hover .badge {
    background-color: #ffca2c !important;
}

/* ===== LOGIN PAGE RESPONSIVE ===== */
@media (max-width: 576px) {
    body.login-page {
        padding: 10px;
    }
    
    .login-card {
        margin: 10px;
        max-width: 100%;
    }
    
    .login-header {
        padding: 20px;
    }
    
    .login-body {
        padding: 20px;
    }
} 



.report-row td {
    background-color: transparent !important;
    background: transparent !important;
}

/* ===== MENU BADGE STYLES ===== */
.sidebar .nav-link .badge {
    position: absolute;
    top: 8px;
    right: 8px;
    font-size: 0.6em;
    min-width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: #ffc107 !important;
    color: #000 !important;
    font-weight: bold;
}

.sidebar .nav-link:hover .badge {
    background-color: #ffca2c !important;
}

/* ===== LOGIN PAGE RESPONSIVE ===== */
@media (max-width: 576px) {
    body.login-page {
        padding: 10px;
    }
    
    .login-card {
        margin: 10px;
        max-width: 100%;
    }
    
    .login-header {
        padding: 20px;
    }
    
    .login-body {
        padding: 20px;
    }
} 



.report-row td {
    background-color: transparent !important;
    background: transparent !important;
}

/* ===== MENU BADGE STYLES ===== */
.sidebar .nav-link .badge {
    position: absolute;
    top: 8px;
    right: 8px;
    font-size: 0.6em;
    min-width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: #ffc107 !important;
    color: #000 !important;
    font-weight: bold;
}

.sidebar .nav-link:hover .badge {
    background-color: #ffca2c !important;
}

/* ===== LOGIN PAGE RESPONSIVE ===== */
@media (max-width: 576px) {
    body.login-page {
        padding: 10px;
    }
    
    .login-card {
        margin: 10px;
        max-width: 100%;
    }
    
    .login-header {
        padding: 20px;
    }
    
    .login-body {
        padding: 20px;
    }
} 



.report-row td {
    background-color: transparent !important;
    background: transparent !important;
}

/* ===== MENU BADGE STYLES ===== */
.sidebar .nav-link .badge {
    position: absolute;
    top: 8px;
    right: 8px;
    font-size: 0.6em;
    min-width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: #ffc107 !important;
    color: #000 !important;
    font-weight: bold;
}

.sidebar .nav-link:hover .badge {
    background-color: #ffca2c !important;
}

/* ===== LOGIN PAGE RESPONSIVE ===== */
@media (max-width: 576px) {
    body.login-page {
        padding: 10px;
    }
    
    .login-card {
        margin: 10px;
        max-width: 100%;
    }
    
    .login-header {
        padding: 20px;
    }
    
    .login-body {
        padding: 20px;
    }
} 



.report-row td {
    background-color: transparent !important;
    background: transparent !important;
}

/* ===== MENU BADGE STYLES ===== */
.sidebar .nav-link .badge {
    position: absolute;
    top: 8px;
    right: 8px;
    font-size: 0.6em;
    min-width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: #ffc107 !important;
    color: #000 !important;
    font-weight: bold;
}

.sidebar .nav-link:hover .badge {
    background-color: #ffca2c !important;
}

/* ===== LOGIN PAGE RESPONSIVE ===== */
@media (max-width: 576px) {
    body.login-page {
        padding: 10px;
    }
    
    .login-card {
        margin: 10px;
        max-width: 100%;
    }
    
    .login-header {
        padding: 20px;
    }
    
    .login-body {
        padding: 20px;
    }
} 



.report-row td {
    background-color: transparent !important;
    background: transparent !important;
}

/* ===== MENU BADGE STYLES ===== */
.sidebar .nav-link .badge {
    position: absolute;
    top: 8px;
    right: 8px;
    font-size: 0.6em;
    min-width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: #ffc107 !important;
    color: #000 !important;
    font-weight: bold;
}

.sidebar .nav-link:hover .badge {
    background-color: #ffca2c !important;
}

/* ===== LOGIN PAGE RESPONSIVE ===== */
@media (max-width: 576px) {
    body.login-page {
        padding: 10px;
    }
    
    .login-card {
        margin: 10px;
        max-width: 100%;
    }
    
    .login-header {
        padding: 20px;
    }
    
    .login-body {
        padding: 20px;
    }
} 



.report-row td {
    background-color: transparent !important;
    background: transparent !important;
}

/* ===== MENU BADGE STYLES ===== */
.sidebar .nav-link .badge {
    position: absolute;
    top: 8px;
    right: 8px;
    font-size: 0.6em;
    min-width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: #ffc107 !important;
    color: #000 !important;
    font-weight: bold;
}

.sidebar .nav-link:hover .badge {
    background-color: #ffca2c !important;
}

/* ===== LOGIN PAGE RESPONSIVE ===== */
@media (max-width: 576px) {
    body.login-page {
        padding: 10px;
    }
    
    .login-card {
        margin: 10px;
        max-width: 100%;
    }
    
    .login-header {
        padding: 20px;
    }
    
    .login-body {
        padding: 20px;
    }
} 



.report-row td {
    background-color: transparent !important;
    background: transparent !important;
}

/* ===== MENU BADGE STYLES ===== */
.sidebar .nav-link .badge {
    position: absolute;
    top: 8px;
    right: 8px;
    font-size: 0.6em;
    min-width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: #ffc107 !important;
    color: #000 !important;
    font-weight: bold;
}

.sidebar .nav-link:hover .badge {
    background-color: #ffca2c !important;
}

/* ===== LOGIN PAGE RESPONSIVE ===== */
@media (max-width: 576px) {
    body.login-page {
        padding: 10px;
    }
    
    .login-card {
        margin: 10px;
        max-width: 100%;
    }
    
    .login-header {
        padding: 20px;
    }
    
    .login-body {
        padding: 20px;
    }
} 



.report-row td {
    background-color: transparent !important;
    background: transparent !important;
}

/* ===== MENU BADGE STYLES ===== */
.sidebar .nav-link .badge {
    position: absolute;
    top: 8px;
    right: 8px;
    font-size: 0.6em;
    min-width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: #ffc107 !important;
    color: #000 !important;
    font-weight: bold;
}

.sidebar .nav-link:hover .badge {
    background-color: #ffca2c !important;
}

/* ===== LOGIN PAGE RESPONSIVE ===== */
@media (max-width: 576px) {
    body.login-page {
        padding: 10px;
    }
    
    .login-card {
        margin: 10px;
        max-width: 100%;
    }
    
    .login-header {
        padding: 20px;
    }
    
    .login-body {
        padding: 20px;
    }
} 



.report-row td {
    background-color: transparent !important;
    background: transparent !important;
}

/* ===== MENU BADGE STYLES ===== */
.sidebar .nav-link .badge {
    position: absolute;
    top: 8px;
    right: 8px;
    font-size: 0.6em;
    min-width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: #ffc107 !important;
    color: #000 !important;
    font-weight: bold;
}

.sidebar .nav-link:hover .badge {
    background-color: #ffca2c !important;
}

/* ===== LOGIN PAGE RESPONSIVE ===== */
@media (max-width: 576px) {
    body.login-page {
        padding: 10px;
    }
    
    .login-card {
        margin: 10px;
        max-width: 100%;
    }
    
    .login-header {
        padding: 20px;
    }
    
    .login-body {
        padding: 20px;
    }
} 



.report-row td {
    background-color: transparent !important;
    background: transparent !important;
}

/* ===== MENU BADGE STYLES ===== */
.sidebar .nav-link .badge {
    position: absolute;
    top: 8px;
    right: 8px;
    font-size: 0.6em;
    min-width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: #ffc107 !important;
    color: #000 !important;
    font-weight: bold;
}

.sidebar .nav-link:hover .badge {
    background-color: #ffca2c !important;
}

/* ===== LOGIN PAGE RESPONSIVE ===== */
@media (max-width: 576px) {
    body.login-page {
        padding: 10px;
    }
    
    .login-card {
        margin: 10px;
        max-width: 100%;
    }
    
    .login-header {
        padding: 20px;
    }
    
    .login-body {
        padding: 20px;
    }
} 



.report-row td {
    background-color: transparent !important;
    background: transparent !important;
}

/* ===== MENU BADGE STYLES ===== */
.sidebar .nav-link .badge {
    position: absolute;
    top: 8px;
    right: 8px;
    font-size: 0.6em;
    min-width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: #ffc107 !important;
    color: #000 !important;
    font-weight: bold;
}

.sidebar .nav-link:hover .badge {
    background-color: #ffca2c !important;
}

/* ===== LOGIN PAGE RESPONSIVE ===== */
@media (max-width: 576px) {
    body.login-page {
        padding: 10px;
    }
    
    .login-card {
        margin: 10px;
        max-width: 100%;
    }
    
    .login-header {
        padding: 20px;
    }
    
    .login-body {
        padding: 20px;
    }
} 



.report-row td {
    background-color: transparent !important;
    background: transparent !important;
}

/* ===== MENU BADGE STYLES ===== */
.sidebar .nav-link .badge {
    position: absolute;
    top: 8px;
    right: 8px;
    font-size: 0.6em;
    min-width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: #ffc107 !important;
    color: #000 !important;
    font-weight: bold;
}

.sidebar .nav-link:hover .badge {
    background-color: #ffca2c !important;
}

/* ===== LOGIN PAGE RESPONSIVE ===== */
@media (max-width: 576px) {
    body.login-page {
        padding: 10px;
    }
    
    .login-card {
        margin: 10px;
        max-width: 100%;
    }
    
    .login-header {
        padding: 20px;
    }
    
    .login-body {
        padding: 20px;
    }
} 



.report-row td {
    background-color: transparent !important;
    background: transparent !important;
}

/* ===== MENU BADGE STYLES ===== */
.sidebar .nav-link .badge {
    position: absolute;
    top: 8px;
    right: 8px;
    font-size: 0.6em;
    min-width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: #ffc107 !important;
    color: #000 !important;
    font-weight: bold;
}

.sidebar .nav-link:hover .badge {
    background-color: #ffca2c !important;
}

/* ===== LOGIN PAGE RESPONSIVE ===== */
@media (max-width: 576px) {
    body.login-page {
        padding: 10px;
    }
    
    .login-card {
        margin: 10px;
        max-width: 100%;
    }
    
    .login-header {
        padding: 20px;
    }
    
    .login-body {
        padding: 20px;
    }
} 



.report-row td {
    background-color: transparent !important;
    background: transparent !important;
}

/* ===== MENU BADGE STYLES ===== */
.sidebar .nav-link .badge {
    position: absolute;
    top: 8px;
    right: 8px;
    font-size: 0.6em;
    min-width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: #ffc107 !important;
    color: #000 !important;
    font-weight: bold;
}

.sidebar .nav-link:hover .badge {
    background-color: #ffca2c !important;
}

/* ===== LOGIN PAGE RESPONSIVE ===== */
@media (max-width: 576px) {
    body.login-page {
        padding: 10px;
    }
    
    .login-card {
        margin: 10px;
        max-width: 100%;
    }
    
    .login-header {
        padding: 20px;
    }
    
    .login-body {
        padding: 20px;
    }
} 



.report-row td {
    background-color: transparent !important;
    background: transparent !important;
}

/* ===== MENU BADGE STYLES ===== */
.sidebar .nav-link .badge {
    position: absolute;
    top: 8px;
    right: 8px;
    font-size: 0.6em;
    min-width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: #ffc107 !important;
    color: #000 !important;
    font-weight: bold;
}

.sidebar .nav-link:hover .badge {
    background-color: #ffca2c !important;
}

/* ===== LOGIN PAGE RESPONSIVE ===== */
@media (max-width: 576px) {
    body.login-page {
        padding: 10px;
    }
    
    .login-card {
        margin: 10px;
        max-width: 100%;
    }
    
    .login-header {
        padding: 20px;
    }
    
    .login-body {
        padding: 20px;
    }
} 



.report-row td {
    background-color: transparent !important;
    background: transparent !important;
}

/* ===== MENU BADGE STYLES ===== */
.sidebar .nav-link .badge {
    position: absolute;
    top: 8px;
    right: 8px;
    font-size: 0.6em;
    min-width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: #ffc107 !important;
    color: #000 !important;
    font-weight: bold;
}

.sidebar .nav-link:hover .badge {
    background-color: #ffca2c !important;
}

/* ===== LOGIN PAGE RESPONSIVE ===== */
@media (max-width: 576px) {
    body.login-page {
        padding: 10px;
    }
    
    .login-card {
        margin: 10px;
        max-width: 100%;
    }
    
    .login-header {
        padding: 20px;
    }
    
    .login-body {
        padding: 20px;
    }
} 



.report-row td {
    background-color: transparent !important;
    background: transparent !important;
}

/* ===== MENU BADGE STYLES ===== */
.sidebar .nav-link .badge {
    position: absolute;
    top: 8px;
    right: 8px;
    font-size: 0.6em;
    min-width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: #ffc107 !important;
    color: #000 !important;
    font-weight: bold;
}

.sidebar .nav-link:hover .badge {
    background-color: #ffca2c !important;
}

/* ===== LOGIN PAGE RESPONSIVE ===== */
@media (max-width: 576px) {
    body.login-page {
        padding: 10px;
    }
    
    .login-card {
        margin: 10px;
        max-width: 100%;
    }
    
    .login-header {
        padding: 20px;
    }
    
    .login-body {
        padding: 20px;
    }
} 



.report-row td {
    background-color: transparent !important;
    background: transparent !important;
}

/* ===== MENU BADGE STYLES ===== */
.sidebar .nav-link .badge {
    position: absolute;
    top: 8px;
    right: 8px;
    font-size: 0.6em;
    min-width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: #ffc107 !important;
    color: #000 !important;
    font-weight: bold;
}

.sidebar .nav-link:hover .badge {
    background-color: #ffca2c !important;
}

/* ===== LOGIN PAGE RESPONSIVE ===== */
@media (max-width: 576px) {
    body.login-page {
        padding: 10px;
    }
    
    .login-card {
        margin: 10px;
        max-width: 100%;
    }
    
    .login-header {
        padding: 20px;
    }
    
    .login-body {
        padding: 20px;
    }
} 



.report-row td {
    background-color: transparent !important;
    background: transparent !important;
}

/* ===== MENU BADGE STYLES ===== */
.sidebar .nav-link .badge {
    position: absolute;
    top: 8px;
    right: 8px;
    font-size: 0.6em;
    min-width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: #ffc107 !important;
    color: #000 !important;
    font-weight: bold;
}

.sidebar .nav-link:hover .badge {
    background-color: #ffca2c !important;
}

/* ===== LOGIN PAGE RESPONSIVE ===== */
@media (max-width: 576px) {
    body.login-page {
        padding: 10px;
    }
    
    .login-card {
        margin: 10px;
        max-width: 100%;
    }
    
    .login-header {
        padding: 20px;
    }
    
    .login-body {
        padding: 20px;
    }
} 



.report-row td {
    background-color: transparent !important;
    background: transparent !important;
}

/* ===== MENU BADGE STYLES ===== */
.sidebar .nav-link .badge {
    position: absolute;
    top: 8px;
    right: 8px;
    font-size: 0.6em;
    min-width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: #ffc107 !important;
    color: #000 !important;
    font-weight: bold;
}

.sidebar .nav-link:hover .badge {
    background-color: #ffca2c !important;
}

/* ===== LOGIN PAGE RESPONSIVE ===== */
@media (max-width: 576px) {
    body.login-page {
        padding: 10px;
    }
    
    .login-card {
        margin: 10px;
        max-width: 100%;
    }
    
    .login-header {
        padding: 20px;
    }
    
    .login-body {
        padding: 20px;
    }
} 



.report-row td {
    background-color: transparent !important;
    background: transparent !important;
}

/* ===== MENU BADGE STYLES ===== */
.sidebar .nav-link .badge {
    position: absolute;
    top: 8px;
    right: 8px;
    font-size: 0.6em;
    min-width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: #ffc107 !important;
    color: #000 !important;
    font-weight: bold;
}

.sidebar .nav-link:hover .badge {
    background-color: #ffca2c !important;
}

/* ===== LOGIN PAGE RESPONSIVE ===== */
@media (max-width: 576px) {
    body.login-page {
        padding: 10px;
    }
    
    .login-card {
        margin: 10px;
        max-width: 100%;
    }
    
    .login-header {
        padding: 20px;
    }
    
    .login-body {
        padding: 20px;
    }
} 



.report-row td {
    background-color: transparent !important;
    background: transparent !important;
}

/* ===== MENU BADGE STYLES ===== */
.sidebar .nav-link .badge {
    position: absolute;
    top: 8px;
    right: 8px;
    font-size: 0.6em;
    min-width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: #ffc107 !important;
    color: #000 !important;
    font-weight: bold;
}

.sidebar .nav-link:hover .badge {
    background-color: #ffca2c !important;
}

/* ===== LOGIN PAGE RESPONSIVE ===== */
@media (max-width: 576px) {
    body.login-page {
        padding: 10px;
    }
    
    .login-card {
        margin: 10px;
        max-width: 100%;
    }
    
    .login-header {
        padding: 20px;
    }
    
    .login-body {
        padding: 20px;
    }
} 



.report-row td {
    background-color: transparent !important;
    background: transparent !important;
}

/* ===== MENU BADGE STYLES ===== */
.sidebar .nav-link .badge {
    position: absolute;
    top: 8px;
    right: 8px;
    font-size: 0.6em;
    min-width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: #ffc107 !important;
    color: #000 !important;
    font-weight: bold;
}

.sidebar .nav-link:hover .badge {
    background-color: #ffca2c !important;
}

/* ===== LOGIN PAGE RESPONSIVE ===== */
@media (max-width: 576px) {
    body.login-page {
        padding: 10px;
    }
    
    .login-card {
        margin: 10px;
        max-width: 100%;
    }
    
    .login-header {
        padding: 20px;
    }
    
    .login-body {
        padding: 20px;
    }
} 



.report-row td {
    background-color: transparent !important;
    background: transparent !important;
}

/* ===== MENU BADGE STYLES ===== */
.sidebar .nav-link .badge {
    position: absolute;
    top: 8px;
    right: 8px;
    font-size: 0.6em;
    min-width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: #ffc107 !important;
    color: #000 !important;
    font-weight: bold;
}

.sidebar .nav-link:hover .badge {
    background-color: #ffca2c !important;
}

/* ===== LOGIN PAGE RESPONSIVE ===== */
@media (max-width: 576px) {
    body.login-page {
        padding: 10px;
    }
    
    .login-card {
        margin: 10px;
        max-width: 100%;
    }
    
    .login-header {
        padding: 20px;
    }
    
    .login-body {
        padding: 20px;
    }
} 



.report-row td {
    background-color: transparent !important;
    background: transparent !important;
}

/* ===== MENU BADGE STYLES ===== */
.sidebar .nav-link .badge {
    position: absolute;
    top: 8px;
    right: 8px;
    font-size: 0.6em;
    min-width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: #ffc107 !important;
    color: #000 !important;
    font-weight: bold;
}

.sidebar .nav-link:hover .badge {
    background-color: #ffca2c !important;
}

/* ===== LOGIN PAGE RESPONSIVE ===== */
@media (max-width: 576px) {
    body.login-page {
        padding: 10px;
    }
    
    .login-card {
        margin: 10px;
        max-width: 100%;
    }
    
    .login-header {
        padding: 20px;
    }
    
    .login-body {
        padding: 20px;
    }
} 



.report-row td {
    background-color: transparent !important;
    background: transparent !important;
}

/* ===== MENU BADGE STYLES ===== */
.sidebar .nav-link .badge {
    position: absolute;
    top: 8px;
    right: 8px;
    font-size: 0.6em;
    min-width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: #ffc107 !important;
    color: #000 !important;
    font-weight: bold;
}

.sidebar .nav-link:hover .badge {
    background-color: #ffca2c !important;
}

/* ===== LOGIN PAGE RESPONSIVE ===== */
@media (max-width: 576px) {
    body.login-page {
        padding: 10px;
    }
    
    .login-card {
        margin: 10px;
        max-width: 100%;
    }
    
    .login-header {
        padding: 20px;
    }
    
    .login-body {
        padding: 20px;
    }
} 



.report-row td {
    background-color: transparent !important;
    background: transparent !important;
}

/* ===== MENU BADGE STYLES ===== */
.sidebar .nav-link .badge {
    position: absolute;
    top: 8px;
    right: 8px;
    font-size: 0.6em;
    min-width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: #ffc107 !important;
    color: #000 !important;
    font-weight: bold;
}

.sidebar .nav-link:hover .badge {
    background-color: #ffca2c !important;
}

/* ===== LOGIN PAGE RESPONSIVE ===== */
@media (max-width: 576px) {
    body.login-page {
        padding: 10px;
    }
    
    .login-card {
        margin: 10px;
        max-width: 100%;
    }
    
    .login-header {
        padding: 20px;
    }
    
    .login-body {
        padding: 20px;
    }
} 



.report-row td {
    background-color: transparent !important;
    background: transparent !important;
}

/* ===== MENU BADGE STYLES ===== */
.sidebar .nav-link .badge {
    position: absolute;
    top: 8px;
    right: 8px;
    font-size: 0.6em;
    min-width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: #ffc107 !important;
    color: #000 !important;
    font-weight: bold;
}

.sidebar .nav-link:hover .badge {
    background-color: #ffca2c !important;
}

/* ===== LOGIN PAGE RESPONSIVE ===== */
@media (max-width: 576px) {
    body.login-page {
        padding: 10px;
    }
    
    .login-card {
        margin: 10px;
        max-width: 100%;
    }
    
    .login-header {
        padding: 20px;
    }
    
    .login-body {
        padding: 20px;
    }
} 



.report-row td {
    background-color: transparent !important;
    background: transparent !important;
}

/* ===== MENU BADGE STYLES ===== */
.sidebar .nav-link .badge {
    position: absolute;
    top: 8px;
    right: 8px;
    font-size: 0.6em;
    min-width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: #ffc107 !important;
    color: #000 !important;
    font-weight: bold;
}

.sidebar .nav-link:hover .badge {
    background-color: #ffca2c !important;
}

/* ===== LOGIN PAGE RESPONSIVE ===== */
@media (max-width: 576px) {
    body.login-page {
        padding: 10px;
    }
    
    .login-card {
        margin: 10px;
        max-width: 100%;
    }
    
    .login-header {
        padding: 20px;
    }
    
    .login-body {
        padding: 20px;
    }
} 



.report-row td {
    background-color: transparent !important;
    background: transparent !important;
}

/* ===== MENU BADGE STYLES ===== */
.sidebar .nav-link .badge {
    position: absolute;
    top: 8px;
    right: 8px;
    font-size: 0.6em;
    min-width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: #ffc107 !important;
    color: #000 !important;
    font-weight: bold;
}

.sidebar .nav-link:hover .badge {
    background-color: #ffca2c !important;
}

/* ===== LOGIN PAGE RESPONSIVE ===== */
@media (max-width: 576px) {
    body.login-page {
        padding: 10px;
    }
    
    .login-card {
        margin: 10px;
        max-width: 100%;
    }
    
    .login-header {
        padding: 20px;
    }
    
    .login-body {
        padding: 20px;
    }
} 



.report-row td {
    background-color: transparent !important;
    background: transparent !important;
}

/* ===== MENU BADGE STYLES ===== */
.sidebar .nav-link .badge {
    position: absolute;
    top: 8px;
    right: 8px;
    font-size: 0.6em;
    min-width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: #ffc107 !important;
    color: #000 !important;
    font-weight: bold;
}

.sidebar .nav-link:hover .badge {
    background-color: #ffca2c !important;
}

/* ===== LOGIN PAGE RESPONSIVE ===== */
@media (max-width: 576px) {
    body.login-page {
        padding: 10px;
    }
    
    .login-card {
        margin: 10px;
        max-width: 100%;
    }
    
    .login-header {
        padding: 20px;
    }
    
    .login-body {
        padding: 20px;
    }
} 



.report-row td {
    background-color: transparent !important;
    background: transparent !important;
}

/* ===== MENU BADGE STYLES ===== */
.sidebar .nav-link .badge {
    position: absolute;
    top: 8px;
    right: 8px;
    font-size: 0.6em;
    min-width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: #ffc107 !important;
    color: #000 !important;
    font-weight: bold;
}

.sidebar .nav-link:hover .badge {
    background-color: #ffca2c !important;
}

/* ===== LOGIN PAGE RESPONSIVE ===== */
@media (max-width: 576px) {
    body.login-page {
        padding: 10px;
    }
    
    .login-card {
        margin: 10px;
        max-width: 100%;
    }
    
    .login-header {
        padding: 20px;
    }
    
    .login-body {
        padding: 20px;
    }
} 



.report-row td {
    background-color: transparent !important;
    background: transparent !important;
}

/* ===== MENU BADGE STYLES ===== */
.sidebar .nav-link .badge {
    position: absolute;
    top: 8px;
    right: 8px;
    font-size: 0.6em;
    min-width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: #ffc107 !important;
    color: #000 !important;
    font-weight: bold;
}

.sidebar .nav-link:hover .badge {
    background-color: #ffca2c !important;
}

/* ===== LOGIN PAGE RESPONSIVE ===== */
@media (max-width: 576px) {
    body.login-page {
        padding: 10px;
    }
    
    .login-card {
        margin: 10px;
        max-width: 100%;
    }
    
    .login-header {
        padding: 20px;
    }
    
    .login-body {
        padding: 20px;
    }
} 



.report-row td {
    background-color: transparent !important;
    background: transparent !important;
}

/* ===== MENU BADGE STYLES ===== */
.sidebar .nav-link .badge {
    position: absolute;
    top: 8px;
    right: 8px;
    font-size: 0.6em;
    min-width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: #ffc107 !important;
    color: #000 !important;
    font-weight: bold;
}

.sidebar .nav-link:hover .badge {
    background-color: #ffca2c !important;
}

/* ===== LOGIN PAGE RESPONSIVE ===== */
@media (max-width: 576px) {
    body.login-page {
        padding: 10px;
    }
    
    .login-card {
        margin: 10px;
        max-width: 100%;
    }
    
    .login-header {
        padding: 20px;
    }
    
    .login-body {
        padding: 20px;
    }
} 



.report-row td {
    background-color: transparent !important;
    background: transparent !important;
}

/* ===== MENU BADGE STYLES ===== */
.sidebar .nav-link .badge {
    position: absolute;
    top: 8px;
    right: 8px;
    font-size: 0.6em;
    min-width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: #ffc107 !important;
    color: #000 !important;
    font-weight: bold;
}

.sidebar .nav-link:hover .badge {
    background-color: #ffca2c !important;
}

/* ===== LOGIN PAGE RESPONSIVE ===== */
@media (max-width: 576px) {
    body.login-page {
        padding: 10px;
    }
    
    .login-card {
        margin: 10px;
        max-width: 100%;
    }
    
    .login-header {
        padding: 20px;
    }
    
    .login-body {
        padding: 20px;
    }
} 



.report-row td {
    background-color: transparent !important;
    background: transparent !important;
}

/* ===== MENU BADGE STYLES ===== */
.sidebar .nav-link .badge {
    position: absolute;
    top: 8px;
    right: 8px;
    font-size: 0.6em;
    min-width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: #ffc107 !important;
    color: #000 !important;
    font-weight: bold;
}

.sidebar .nav-link:hover .badge {
    background-color: #ffca2c !important;
}

/* ===== LOGIN PAGE RESPONSIVE ===== */
@media (max-width: 576px) {
    body.login-page {
        padding: 10px;
    }
    
    .login-card {
        margin: 10px;
        max-width: 100%;
    }
    
    .login-header {
        padding: 20px;
    }
    
    .login-body {
        padding: 20px;
    }
} 



.report-row td {
    background-color: transparent !important;
    background: transparent !important;
}

/* ===== MENU BADGE STYLES ===== */
.sidebar .nav-link .badge {
    position: absolute;
    top: 8px;
    right: 8px;
    font-size: 0.6em;
    min-width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: #ffc107 !important;
    color: #000 !important;
    font-weight: bold;
}

.sidebar .nav-link:hover .badge {
    background-color: #ffca2c !important;
}

/* ===== LOGIN PAGE RESPONSIVE ===== */
@media (max-width: 576px) {
    body.login-page {
        padding: 10px;
    }
    
    .login-card {
        margin: 10px;
        max-width: 100%;
    }
    
    .login-header {
        padding: 20px;
    }
    
    .login-body {
        padding: 20px;
    }
} 



.report-row td {
    background-color: transparent !important;
    background: transparent !important;
}

/* ===== MENU BADGE STYLES ===== */
.sidebar .nav-link .badge {
    position: absolute;
    top: 8px;
    right: 8px;
    font-size: 0.6em;
    min-width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: #ffc107 !important;
    color: #000 !important;
    font-weight: bold;
}

.sidebar .nav-link:hover .badge {
    background-color: #ffca2c !important;
}

/* ===== LOGIN PAGE RESPONSIVE ===== */
@media (max-width: 576px) {
    body.login-page {
        padding: 10px;
    }
    
    .login-card {
        margin: 10px;
        max-width: 100%;
    }
    
    .login-header {
        padding: 20px;
    }
    
    .login-body {
        padding: 20px;
    }
} 



.report-row td {
    background-color: transparent !important;
    background: transparent !important;
}

/* ===== MENU BADGE STYLES ===== */
.sidebar .nav-link .badge {
    position: absolute;
    top: 8px;
    right: 8px;
    font-size: 0.6em;
    min-width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: #ffc107 !important;
    color: #000 !important;
    font-weight: bold;
}

.sidebar .nav-link:hover .badge {
    background-color: #ffca2c !important;
}

/* ===== LOGIN PAGE RESPONSIVE ===== */
@media (max-width: 576px) {
    body.login-page {
        padding: 10px;
    }
    
    .login-card {
        margin: 10px;
        max-width: 100%;
    }
    
    .login-header {
        padding: 20px;
    }
    
    .login-body {
        padding: 20px;
    }
} 



.report-row td {
    background-color: transparent !important;
    background: transparent !important;
}

/* ===== MENU BADGE STYLES ===== */
.sidebar .nav-link .badge {
    position: absolute;
    top: 8px;
    right: 8px;
    font-size: 0.6em;
    min-width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: #ffc107 !important;
    color: #000 !important;
    font-weight: bold;
}

.sidebar .nav-link:hover .badge {
    background-color: #ffca2c !important;
}

/* ===== LOGIN PAGE RESPONSIVE ===== */
@media (max-width: 576px) {
    body.login-page {
        padding: 10px;
    }
    
    .login-card {
        margin: 10px;
        max-width: 100%;
    }
    
    .login-header {
        padding: 20px;
    }
    
    .login-body {
        padding: 20px;
    }
} 



.report-row td {
    background-color: transparent !important;
    background: transparent !important;
}

/* ===== MENU BADGE STYLES ===== */
.sidebar .nav-link .badge {
    position: absolute;
    top: 8px;
    right: 8px;
    font-size: 0.6em;
    min-width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: #ffc107 !important;
    color: #000 !important;
    font-weight: bold;
}

.sidebar .nav-link:hover .badge {
    background-color: #ffca2c !important;
}

/* ===== LOGIN PAGE RESPONSIVE ===== */
@media (max-width: 576px) {
    body.login-page {
        padding: 10px;
    }
    
    .login-card {
        margin: 10px;
        max-width: 100%;
    }
    
    .login-header {
        padding: 20px;
    }
    
    .login-body {
        padding: 20px;
    }
} 



.report-row td {
    background-color: transparent !important;
    background: transparent !important;
}

/* ===== MENU BADGE STYLES ===== */
.sidebar .nav-link .badge {
    position: absolute;
    top: 8px;
    right: 8px;
    font-size: 0.6em;
    min-width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: #ffc107 !important;
    color: #000 !important;
    font-weight: bold;
}

.sidebar .nav-link:hover .badge {
    background-color: #ffca2c !important;
}

/* ===== LOGIN PAGE RESPONSIVE ===== */
@media (max-width: 576px) {
    body.login-page {
        padding: 10px;
    }
    
    .login-card {
        margin: 10px;
        max-width: 100%;
    }
    
    .login-header {
        padding: 20px;
    }
    
    .login-body {
        padding: 20px;
    }
} 



.report-row td {
    background-color: transparent !important;
    background: transparent !important;
}

/* ===== MENU BADGE STYLES ===== */
.sidebar .nav-link .badge {
    position: absolute;
    top: 8px;
    right: 8px;
    font-size: 0.6em;
    min-width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: #ffc107 !important;
    color: #000 !important;
    font-weight: bold;
}

.sidebar .nav-link:hover .badge {
    background-color: #ffca2c !important;
}

/* ===== LOGIN PAGE RESPONSIVE ===== */
@media (max-width: 576px) {
    body.login-page {
        padding: 10px;
    }
    
    .login-card {
        margin: 10px;
        max-width: 100%;
    }
    
    .login-header {
        padding: 20px;
    }
    
    .login-body {
        padding: 20px;
    }
} 



.report-row td {
    background-color: transparent !important;
    background: transparent !important;
}

/* ===== MENU BADGE STYLES ===== */
.sidebar .nav-link .badge {
    position: absolute;
    top: 8px;
    right: 8px;
    font-size: 0.6em;
    min-width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: #ffc107 !important;
    color: #000 !important;
    font-weight: bold;
}

.sidebar .nav-link:hover .badge {
    background-color: #ffca2c !important;
}

/* ===== LOGIN PAGE RESPONSIVE ===== */
@media (max-width: 576px) {
    body.login-page {
        padding: 10px;
    }
    
    .login-card {
        margin: 10px;
        max-width: 100%;
    }
    
    .login-header {
        padding: 20px;
    }
    
    .login-body {
        padding: 20px;
    }
} 



.report-row td {
    background-color: transparent !important;
    background: transparent !important;
}

/* ===== MENU BADGE STYLES ===== */
.sidebar .nav-link .badge {
    position: absolute;
    top: 8px;
    right: 8px;
    font-size: 0.6em;
    min-width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: #ffc107 !important;
    color: #000 !important;
    font-weight: bold;
}

.sidebar .nav-link:hover .badge {
    background-color: #ffca2c !important;
}

/* ===== LOGIN PAGE RESPONSIVE ===== */
@media (max-width: 576px) {
    body.login-page {
        padding: 10px;
    }
    
    .login-card {
        margin: 10px;
        max-width: 100%;
    }
    
    .login-header {
        padding: 20px;
    }
    
    .login-body {
        padding: 20px;
    }
} 



.report-row td {
    background-color: transparent !important;
    background: transparent !important;
}

/* ===== MENU BADGE STYLES ===== */
.sidebar .nav-link .badge {
    position: absolute;
    top: 8px;
    right: 8px;
    font-size: 0.6em;
    min-width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: #ffc107 !important;
    color: #000 !important;
    font-weight: bold;
}

.sidebar .nav-link:hover .badge {
    background-color: #ffca2c !important;
}

/* ===== LOGIN PAGE RESPONSIVE ===== */
@media (max-width: 576px) {
    body.login-page {
        padding: 10px;
    }
    
    .login-card {
        margin: 10px;
        max-width: 100%;
    }
    
    .login-header {
        padding: 20px;
    }
    
    .login-body {
        padding: 20px;
    }
} 



.report-row td {
    background-color: transparent !important;
    background: transparent !important;
}

/* ===== MENU BADGE STYLES ===== */
.sidebar .nav-link .badge {
    position: absolute;
    top: 8px;
    right: 8px;
    font-size: 0.6em;
    min-width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: #ffc107 !important;
    color: #000 !important;
    font-weight: bold;
}

.sidebar .nav-link:hover .badge {
    background-color: #ffca2c !important;
}

/* ===== LOGIN PAGE RESPONSIVE ===== */
@media (max-width: 576px) {
    body.login-page {
        padding: 10px;
    }
    
    .login-card {
        margin: 10px;
        max-width: 100%;
    }
    
    .login-header {
        padding: 20px;
    }
    
    .login-body {
        padding: 20px;
    }
} 



.report-row td {
    background-color: transparent !important;
    background: transparent !important;
}

/* ===== MENU BADGE STYLES ===== */
.sidebar .nav-link .badge {
    position: absolute;
    top: 8px;
    right: 8px;
    font-size: 0.6em;
    min-width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: #ffc107 !important;
    color: #000 !important;
    font-weight: bold;
}

.sidebar .nav-link:hover .badge {
    background-color: #ffca2c !important;
}

/* ===== LOGIN PAGE RESPONSIVE ===== */
@media (max-width: 576px) {
    body.login-page {
        padding: 10px;
    }
    
    .login-card {
        margin: 10px;
        max-width: 100%;
    }
    
    .login-header {
        padding: 20px;
    }
    
    .login-body {
        padding: 20px;
    }
} 



.report-row td {
    background-color: transparent !important;
    background: transparent !important;
}

/* ===== MENU BADGE STYLES ===== */
.sidebar .nav-link .badge {
    position: absolute;
    top: 8px;
    right: 8px;
    font-size: 0.6em;
    min-width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: #ffc107 !important;
    color: #000 !important;
    font-weight: bold;
}

.sidebar .nav-link:hover .badge {
    background-color: #ffca2c !important;
}

/* ===== LOGIN PAGE RESPONSIVE ===== */
@media (max-width: 576px) {
    body.login-page {
        padding: 10px;
    }
    
    .login-card {
        margin: 10px;
        max-width: 100%;
    }
    
    .login-header {
        padding: 20px;
    }
    
    .login-body {
        padding: 20px;
    }
} 



.report-row td {
    background-color: transparent !important;
    background: transparent !important;
}

/* ===== MENU BADGE STYLES ===== */
.sidebar .nav-link .badge {
    position: absolute;
    top: 8px;
    right: 8px;
    font-size: 0.6em;
    min-width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: #ffc107 !important;
    color: #000 !important;
    font-weight: bold;
}

.sidebar .nav-link:hover .badge {
    background-color: #ffca2c !important;
}

/* ===== LOGIN PAGE RESPONSIVE ===== */
@media (max-width: 576px) {
    body.login-page {
        padding: 10px;
    }
    
    .login-card {
        margin: 10px;
        max-width: 100%;
    }
    
    .login-header {
        padding: 20px;
    }
    
    .login-body {
        padding: 20px;
    }
} 



.report-row td {
    background-color: transparent !important;
    background: transparent !important;
}

/* ===== MENU BADGE STYLES ===== */
.sidebar .nav-link .badge {
    position: absolute;
    top: 8px;
    right: 8px;
    font-size: 0.6em;
    min-width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: #ffc107 !important;
    color: #000 !important;
    font-weight: bold;
}

.sidebar .nav-link:hover .badge {
    background-color: #ffca2c !important;
}

/* ===== LOGIN PAGE RESPONSIVE ===== */
@media (max-width: 576px) {
    body.login-page {
        padding: 10px;
    }
    
    .login-card {
        margin: 10px;
        max-width: 100%;
    }
    
    .login-header {
        padding: 20px;
    }
    
    .login-body {
        padding: 20px;
    }
} 



.report-row td {
    background-color: transparent !important;
    background: transparent !important;
}

/* ===== MENU BADGE STYLES ===== */
.sidebar .nav-link .badge {
    position: absolute;
    top: 8px;
    right: 8px;
    font-size: 0.6em;
    min-width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: #ffc107 !important;
    color: #000 !important;
    font-weight: bold;
}

.sidebar .nav-link:hover .badge {
    background-color: #ffca2c !important;
}

/* ===== LOGIN PAGE RESPONSIVE ===== */
@media (max-width: 576px) {
    body.login-page {
        padding: 10px;
    }
    
    .login-card {
        margin: 10px;
        max-width: 100%;
    }
    
    .login-header {
        padding: 20px;
    }
    
    .login-body {
        padding: 20px;
    }
} 



.report-row td {
    background-color: transparent !important;
    background: transparent !important;
}

/* ===== MENU BADGE STYLES ===== */
.sidebar .nav-link .badge {
    position: absolute;
    top: 8px;
    right: 8px;
    font-size: 0.6em;
    min-width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: #ffc107 !important;
    color: #000 !important;
    font-weight: bold;
}

.sidebar .nav-link:hover .badge {
    background-color: #ffca2c !important;
}

/* ===== LOGIN PAGE RESPONSIVE ===== */
@media (max-width: 576px) {
    body.login-page {
        padding: 10px;
    }
    
    .login-card {
        margin: 10px;
        max-width: 100%;
    }
    
    .login-header {
        padding: 20px;
    }
    
    .login-body {
        padding: 20px;
    }
} 



.report-row td {
    background-color: transparent !important;
    background: transparent !important;
}

/* ===== MENU BADGE STYLES ===== */
.sidebar .nav-link .badge {
    position: absolute;
    top: 8px;
    right: 8px;
    font-size: 0.6em;
    min-width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: #ffc107 !important;
    color: #000 !important;
    font-weight: bold;
}

.sidebar .nav-link:hover .badge {
    background-color: #ffca2c !important;
}

/* ===== LOGIN PAGE RESPONSIVE ===== */
@media (max-width: 576px) {
    body.login-page {
        padding: 10px;
    }
    
    .login-card {
        margin: 10px;
        max-width: 100%;
    }
    
    .login-header {
        padding: 20px;
    }
    
    .login-body {
        padding: 20px;
    }
} 



.report-row td {
    background-color: transparent !important;
    background: transparent !important;
}

/* ===== MENU BADGE STYLES ===== */
.sidebar .nav-link .badge {
    position: absolute;
    top: 8px;
    right: 8px;
    font-size: 0.6em;
    min-width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: #ffc107 !important;
    color: #000 !important;
    font-weight: bold;
}

.sidebar .nav-link:hover .badge {
    background-color: #ffca2c !important;
}

/* ===== LOGIN PAGE RESPONSIVE ===== */
@media (max-width: 576px) {
    body.login-page {
        padding: 10px;
    }
    
    .login-card {
        margin: 10px;
        max-width: 100%;
    }
    
    .login-header {
        padding: 20px;
    }
    
    .login-body {
        padding: 20px;
    }
} 



.report-row td {
    background-color: transparent !important;
    background: transparent !important;
}

/* ===== MENU BADGE STYLES ===== */
.sidebar .nav-link .badge {
    position: absolute;
    top: 8px;
    right: 8px;
    font-size: 0.6em;
    min-width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: #ffc107 !important;
    color: #000 !important;
    font-weight: bold;
}

.sidebar .nav-link:hover .badge {
    background-color: #ffca2c !important;
}

/* ===== LOGIN PAGE RESPONSIVE ===== */
@media (max-width: 576px) {
    body.login-page {
        padding: 10px;
    }
    
    .login-card {
        margin: 10px;
        max-width: 100%;
    }
    
    .login-header {
        padding: 20px;
    }
    
    .login-body {
        padding: 20px;
    }
} 



.report-row td {
    background-color: transparent !important;
    background: transparent !important;
}

/* ===== MENU BADGE STYLES ===== */
.sidebar .nav-link .badge {
    position: absolute;
    top: 8px;
    right: 8px;
    font-size: 0.6em;
    min-width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: #ffc107 !important;
    color: #000 !important;
    font-weight: bold;
}

.sidebar .nav-link:hover .badge {
    background-color: #ffca2c !important;
}

/* ===== LOGIN PAGE RESPONSIVE ===== */
@media (max-width: 576px) {
    body.login-page {
        padding: 10px;
    }
    
    .login-card {
        margin: 10px;
        max-width: 100%;
    }
    
    .login-header {
        padding: 20px;
    }
    
    .login-body {
        padding: 20px;
    }
} 



.report-row td {
    background-color: transparent !important;
    background: transparent !important;
}

/* ===== MENU BADGE STYLES ===== */
.sidebar .nav-link .badge {
    position: absolute;
    top: 8px;
    right: 8px;
    font-size: 0.6em;
    min-width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: #ffc107 !important;
    color: #000 !important;
    font-weight: bold;
}

.sidebar .nav-link:hover .badge {
    background-color: #ffca2c !important;
}

/* ===== LOGIN PAGE RESPONSIVE ===== */
@media (max-width: 576px) {
    body.login-page {
        padding: 10px;
    }
    
    .login-card {
        margin: 10px;
        max-width: 100%;
    }
    
    .login-header {
        padding: 20px;
    }
    
    .login-body {
        padding: 20px;
    }
} 



.report-row td {
    background-color: transparent !important;
    background: transparent !important;
}

/* ===== MENU BADGE STYLES ===== */
.sidebar .nav-link .badge {
    position: absolute;
    top: 8px;
    right: 8px;
    font-size: 0.6em;
    min-width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: #ffc107 !important;
    color: #000 !important;
    font-weight: bold;
}

.sidebar .nav-link:hover .badge {
    background-color: #ffca2c !important;
}

/* ===== LOGIN PAGE RESPONSIVE ===== */
@media (max-width: 576px) {
    body.login-page {
        padding: 10px;
    }
    
    .login-card {
        margin: 10px;
        max-width: 100%;
    }
    
    .login-header {
        padding: 20px;
    }
    
    .login-body {
        padding: 20px;
    }
} 



.report-row td {
    background-color: transparent !important;
    background: transparent !important;
}

/* ===== MENU BADGE STYLES ===== */
.sidebar .nav-link .badge {
    position: absolute;
    top: 8px;
    right: 8px;
    font-size: 0.6em;
    min-width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: #ffc107 !important;
    color: #000 !important;
    font-weight: bold;
}

.sidebar .nav-link:hover .badge {
    background-color: #ffca2c !important;
}

/* ===== LOGIN PAGE RESPONSIVE ===== */
@media (max-width: 576px) {
    body.login-page {
        padding: 10px;
    }
    
    .login-card {
        margin: 10px;
        max-width: 100%;
    }
    
    .login-header {
        padding: 20px;
    }
    
    .login-body {
        padding: 20px;
    }
} 



.report-row td {
    background-color: transparent !important;
    background: transparent !important;
}

/* ===== MENU BADGE STYLES ===== */
.sidebar .nav-link .badge {
    position: absolute;
    top: 8px;
    right: 8px;
    font-size: 0.6em;
    min-width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: #ffc107 !important;
    color: #000 !important;
    font-weight: bold;
}

.sidebar .nav-link:hover .badge {
    background-color: #ffca2c !important;
}

/* ===== LOGIN PAGE RESPONSIVE ===== */
@media (max-width: 576px) {
    body.login-page {
        padding: 10px;
    }
    
    .login-card {
        margin: 10px;
        max-width: 100%;
    }
    
    .login-header {
        padding: 20px;
    }
    
    .login-body {
        padding: 20px;
    }
} 



.report-row td {
    background-color: transparent !important;
    background: transparent !important;
}

/* ===== MENU BADGE STYLES ===== */
.sidebar .nav-link .badge {
    position: absolute;
    top: 8px;
    right: 8px;
    font-size: 0.6em;
    min-width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: #ffc107 !important;
    color: #000 !important;
    font-weight: bold;
}

.sidebar .nav-link:hover .badge {
    background-color: #ffca2c !important;
}

/* ===== LOGIN PAGE RESPONSIVE ===== */
@media (max-width: 576px) {
    body.login-page {
        padding: 10px;
    }
    
    .login-card {
        margin: 10px;
        max-width: 100%;
    }
    
    .login-header {
        padding: 20px;
    }
    
    .login-body {
        padding: 20px;
    }
} 



.report-row td {
    background-color: transparent !important;
    background: transparent !important;
}

/* ===== MENU BADGE STYLES ===== */
.sidebar .nav-link .badge {
    position: absolute;
    top: 8px;
    right: 8px;
    font-size: 0.6em;
    min-width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: #ffc107 !important;
    color: #000 !important;
    font-weight: bold;
}

.sidebar .nav-link:hover .badge {
    background-color: #ffca2c !important;
}

/* ===== LOGIN PAGE RESPONSIVE ===== */
@media (max-width: 576px) {
    body.login-page {
        padding: 10px;
    }
    
    .login-card {
        margin: 10px;
        max-width: 100%;
    }
    
    .login-header {
        padding: 20px;
    }
    
    .login-body {
        padding: 20px;
    }
} 



.report-row td {
    background-color: transparent !important;
    background: transparent !important;
}

/* ===== MENU BADGE STYLES ===== */
.sidebar .nav-link .badge {
    position: absolute;
    top: 8px;
    right: 8px;
    font-size: 0.6em;
    min-width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: #ffc107 !important;
    color: #000 !important;
    font-weight: bold;
}

.sidebar .nav-link:hover .badge {
    background-color: #ffca2c !important;
}

/* ===== LOGIN PAGE RESPONSIVE ===== */
@media (max-width: 576px) {
    body.login-page {
        padding: 10px;
    }
    
    .login-card {
        margin: 10px;
        max-width: 100%;
    }
    
    .login-header {
        padding: 20px;
    }
    
    .login-body {
        padding: 20px;
    }
} 



.report-row td {
    background-color: transparent !important;
    background: transparent !important;
}

/* ===== MENU BADGE STYLES ===== */
.sidebar .nav-link .badge {
    position: absolute;
    top: 8px;
    right: 8px;
    font-size: 0.6em;
    min-width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: #ffc107 !important;
    color: #000 !important;
    font-weight: bold;
}

.sidebar .nav-link:hover .badge {
    background-color: #ffca2c !important;
}

/* ===== LOGIN PAGE RESPONSIVE ===== */
@media (max-width: 576px) {
    body.login-page {
        padding: 10px;
    }
    
    .login-card {
        margin: 10px;
        max-width: 100%;
    }
    
    .login-header {
        padding: 20px;
    }
    
    .login-body {
        padding: 20px;
    }
} 



.report-row td {
    background-color: transparent !important;
    background: transparent !important;
}

/* ===== MENU BADGE STYLES ===== */
.sidebar .nav-link .badge {
    position: absolute;
    top: 8px;
    right: 8px;
    font-size: 0.6em;
    min-width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: #ffc107 !important;
    color: #000 !important;
    font-weight: bold;
}

.sidebar .nav-link:hover .badge {
    background-color: #ffca2c !important;
}

/* ===== LOGIN PAGE RESPONSIVE ===== */
@media (max-width: 576px) {
    body.login-page {
        padding: 10px;
    }
    
    .login-card {
        margin: 10px;
        max-width: 100%;
    }
    
    .login-header {
        padding: 20px;
    }
    
    .login-body {
        padding: 20px;
    }
} 



.report-row td {
    background-color: transparent !important;
    background: transparent !important;
}

/* ===== MENU BADGE STYLES ===== */
.sidebar .nav-link .badge {
    position: absolute;
    top: 8px;
    right: 8px;
    font-size: 0.6em;
    min-width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: #ffc107 !important;
    color: #000 !important;
    font-weight: bold;
}

.sidebar .nav-link:hover .badge {
    background-color: #ffca2c !important;
}

/* ===== LOGIN PAGE RESPONSIVE ===== */
@media (max-width: 576px) {
    body.login-page {
        padding: 10px;
    }
    
    .login-card {
        margin: 10px;
        max-width: 100%;
    }
    
    .login-header {
        padding: 20px;
    }
    
    .login-body {
        padding: 20px;
    }
} 



.report-row td {
    background-color: transparent !important;
    background: transparent !important;
}

/* ===== MENU BADGE STYLES ===== */
.sidebar .nav-link .badge {
    position: absolute;
    top: 8px;
    right: 8px;
    font-size: 0.6em;
    min-width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: #ffc107 !important;
    color: #000 !important;
    font-weight: bold;
}

.sidebar .nav-link:hover .badge {
    background-color: #ffca2c !important;
}

/* ===== LOGIN PAGE RESPONSIVE ===== */
@media (max-width: 576px) {
    body.login-page {
        padding: 10px;
    }
    
    .login-card {
        margin: 10px;
        max-width: 100%;
    }
    
    .login-header {
        padding: 20px;
    }
    
    .login-body {
        padding: 20px;
    }
} 



.report-row td {
    background-color: transparent !important;
    background: transparent !important;
}

/* ===== MENU BADGE STYLES ===== */
.sidebar .nav-link .badge {
    position: absolute;
    top: 8px;
    right: 8px;
    font-size: 0.6em;
    min-width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: #ffc107 !important;
    color: #000 !important;
    font-weight: bold;
}

.sidebar .nav-link:hover .badge {
    background-color: #ffca2c !important;
}

/* ===== LOGIN PAGE RESPONSIVE ===== */
@media (max-width: 576px) {
    body.login-page {
        padding: 10px;
    }
    
    .login-card {
        margin: 10px;
        max-width: 100%;
    }
    
    .login-header {
        padding: 20px;
    }
    
    .login-body {
        padding: 20px;
    }
} 



.report-row td {
    background-color: transparent !important;
    background: transparent !important;
}

/* ===== MENU BADGE STYLES ===== */
.sidebar .nav-link .badge {
    position: absolute;
    top: 8px;
    right: 8px;
    font-size: 0.6em;
    min-width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: #ffc107 !important;
    color: #000 !important;
    font-weight: bold;
}

.sidebar .nav-link:hover .badge {
    background-color: #ffca2c !important;
}

/* ===== LOGIN PAGE RESPONSIVE ===== */
@media (max-width: 576px) {
    body.login-page {
        padding: 10px;
    }
    
    .login-card {
        margin: 10px;
        max-width: 100%;
    }
    
    .login-header {
        padding: 20px;
    }
    
    .login-body {
        padding: 20px;
    }
} 



.report-row td {
    background-color: transparent !important;
    background: transparent !important;
}

/* ===== MENU BADGE STYLES ===== */
.sidebar .nav-link .badge {
    position: absolute;
    top: 8px;
    right: 8px;
    font-size: 0.6em;
    min-width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: #ffc107 !important;
    color: #000 !important;
    font-weight: bold;
}

.sidebar .nav-link:hover .badge {
    background-color: #ffca2c !important;
}

/* ===== LOGIN PAGE RESPONSIVE ===== */
@media (max-width: 576px) {
    body.login-page {
        padding: 10px;
    }
    
    .login-card {
        margin: 10px;
        max-width: 100%;
    }
    
    .login-header {
        padding: 20px;
    }
    
    .login-body {
        padding: 20px;
    }
} 



.report-row td {
    background-color: transparent !important;
    background: transparent !important;
}

/* ===== MENU BADGE STYLES ===== */
.sidebar .nav-link .badge {
    position: absolute;
    top: 8px;
    right: 8px;
    font-size: 0.6em;
    min-width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: #ffc107 !important;
    color: #000 !important;
    font-weight: bold;
}

.sidebar .nav-link:hover .badge {
    background-color: #ffca2c !important;
}

/* ===== LOGIN PAGE RESPONSIVE ===== */
@media (max-width: 576px) {
    body.login-page {
        padding: 10px;
    }
    
    .login-card {
        margin: 10px;
        max-width: 100%;
    }
    
    .login-header {
        padding: 20px;
    }
    
    .login-body {
        padding: 20px;
    }
} 



.report-row td {
    background-color: transparent !important;
    background: transparent !important;
}

/* ===== MENU BADGE STYLES ===== */
.sidebar .nav-link .badge {
    position: absolute;
    top: 8px;
    right: 8px;
    font-size: 0.6em;
    min-width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: #ffc107 !important;
    color: #000 !important;
    font-weight: bold;
}

.sidebar .nav-link:hover .badge {
    background-color: #ffca2c !important;
}

/* ===== LOGIN PAGE RESPONSIVE ===== */
@media (max-width: 576px) {
    body.login-page {
        padding: 10px;
    }
    
    .login-card {
        margin: 10px;
        max-width: 100%;
    }
    
    .login-header {
        padding: 20px;
    }
    
    .login-body {
        padding: 20px;
    }
} 



.report-row td {
    background-color: transparent !important;
    background: transparent !important;
}

/* ===== MENU BADGE STYLES ===== */
.sidebar .nav-link .badge {
    position: absolute;
    top: 8px;
    right: 8px;
    font-size: 0.6em;
    min-width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: #ffc107 !important;
    color: #000 !important;
    font-weight: bold;
}

.sidebar .nav-link:hover .badge {
    background-color: #ffca2c !important;
}

/* ===== LOGIN PAGE RESPONSIVE ===== */
@media (max-width: 576px) {
    body.login-page {
        padding: 10px;
    }
    
    .login-card {
        margin: 10px;
        max-width: 100%;
    }
    
    .login-header {
        padding: 20px;
    }
    
    .login-body {
        padding: 20px;
    }
} 



.report-row td {
    background-color: transparent !important;
    background: transparent !important;
}

/* ===== MENU BADGE STYLES ===== */
.sidebar .nav-link .badge {
    position: absolute;
    top: 8px;
    right: 8px;
    font-size: 0.6em;
    min-width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: #ffc107 !important;
    color: #000 !important;
    font-weight: bold;
}

.sidebar .nav-link:hover .badge {
    background-color: #ffca2c !important;
}

/* ===== LOGIN PAGE RESPONSIVE ===== */
@media (max-width: 576px) {
    body.login-page {
        padding: 10px;
    }
    
    .login-card {
        margin: 10px;
        max-width: 100%;
    }
    
    .login-header {
        padding: 20px;
    }
    
    .login-body {
        padding: 20px;
    }
} 



.report-row td {
    background-color: transparent !important;
    background: transparent !important;
}

/* ===== MENU BADGE STYLES ===== */
.sidebar .nav-link .badge {
    position: absolute;
    top: 8px;
    right: 8px;
    font-size: 0.6em;
    min-width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: #ffc107 !important;
    color: #000 !important;
    font-weight: bold;
}

.sidebar .nav-link:hover .badge {
    background-color: #ffca2c !important;
}

/* ===== LOGIN PAGE RESPONSIVE ===== */
@media (max-width: 576px) {
    body.login-page {
        padding: 10px;
    }
    
    .login-card {
        margin: 10px;
        max-width: 100%;
    }
    
    .login-header {
        padding: 20px;
    }
    
    .login-body {
        padding: 20px;
    }
} 



.report-row td {
    background-color: transparent !important;
    background: transparent !important;
}

/* ===== MENU BADGE STYLES ===== */
.sidebar .nav-link .badge {
    position: absolute;
    top: 8px;
    right: 8px;
    font-size: 0.6em;
    min-width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: #ffc107 !important;
    color: #000 !important;
    font-weight: bold;
}

.sidebar .nav-link:hover .badge {
    background-color: #ffca2c !important;
}

/* ===== LOGIN PAGE RESPONSIVE ===== */
@media (max-width: 576px) {
    body.login-page {
        padding: 10px;
    }
    
    .login-card {
        margin: 10px;
        max-width: 100%;
    }
    
    .login-header {
        padding: 20px;
    }
    
    .login-body {
        padding: 20px;
    }
} 



.report-row td {
    background-color: transparent !important;
    background: transparent !important;
}

/* ===== MENU BADGE STYLES ===== */
.sidebar .nav-link .badge {
    position: absolute;
    top: 8px;
    right: 8px;
    font-size: 0.6em;
    min-width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: #ffc107 !important;
    color: #000 !important;
    font-weight: bold;
}

.sidebar .nav-link:hover .badge {
    background-color: #ffca2c !important;
}

/* ===== LOGIN PAGE RESPONSIVE ===== */
@media (max-width: 576px) {
    body.login-page {
        padding: 10px;
    }
    
    .login-card {
        margin: 10px;
        max-width: 100%;
    }
    
    .login-header {
        padding: 20px;
    }
    
    .login-body {
        padding: 20px;
    }
} 



.report-row td {
    background-color: transparent !important;
    background: transparent !important;
}

/* ===== MENU BADGE STYLES ===== */
.sidebar .nav-link .badge {
    position: absolute;
    top: 8px;
    right: 8px;
    font-size: 0.6em;
    min-width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: #ffc107 !important;
    color: #000 !important;
    font-weight: bold;
}

.sidebar .nav-link:hover .badge {
    background-color: #ffca2c !important;
}

/* ===== LOGIN PAGE RESPONSIVE ===== */
@media (max-width: 576px) {
    body.login-page {
        padding: 10px;
    }
    
    .login-card {
        margin: 10px;
        max-width: 100%;
    }
    
    .login-header {
        padding: 20px;
    }
    
    .login-body {
        padding: 20px;
    }
} 



.report-row td {
    background-color: transparent !important;
    background: transparent !important;
}

/* ===== MENU BADGE STYLES ===== */
.sidebar .nav-link .badge {
    position: absolute;
    top: 8px;
    right: 8px;
    font-size: 0.6em;
    min-width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: #ffc107 !important;
    color: #000 !important;
    font-weight: bold;
}

.sidebar .nav-link:hover .badge {
    background-color: #ffca2c !important;
}

/* ===== LOGIN PAGE RESPONSIVE ===== */
@media (max-width: 576px) {
    body.login-page {
        padding: 10px;
    }
    
    .login-card {
        margin: 10px;
        max-width: 100%;
    }
    
    .login-header {
        padding: 20px;
    }
    
    .login-body {
        padding: 20px;
    }
} 



.report-row td {
    background-color: transparent !important;
    background: transparent !important;
}

/* ===== MENU BADGE STYLES ===== */
.sidebar .nav-link .badge {
    position: absolute;
    top: 8px;
    right: 8px;
    font-size: 0.6em;
    min-width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: #ffc107 !important;
    color: #000 !important;
    font-weight: bold;
}

.sidebar .nav-link:hover .badge {
    background-color: #ffca2c !important;
}

/* ===== LOGIN PAGE RESPONSIVE ===== */
@media (max-width: 576px) {
    body.login-page {
        padding: 10px;
    }
    
    .login-card {
        margin: 10px;
        max-width: 100%;
    }
    
    .login-header {
        padding: 20px;
    }
    
    .login-body {
        padding: 20px;
    }
} 



.report-row td {
    background-color: transparent !important;
    background: transparent !important;
}

/* ===== MENU BADGE STYLES ===== */
.sidebar .nav-link .badge {
    position: absolute;
    top: 8px;
    right: 8px;
    font-size: 0.6em;
    min-width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: #ffc107 !important;
    color: #000 !important;
    font-weight: bold;
}

.sidebar .nav-link:hover .badge {
    background-color: #ffca2c !important;
}

/* ===== LOGIN PAGE RESPONSIVE ===== */
@media (max-width: 576px) {
    body.login-page {
        padding: 10px;
    }
    
    .login-card {
        margin: 10px;
        max-width: 100%;
    }
    
    .login-header {
        padding: 20px;
    }
    
    .login-body {
        padding: 20px;
    }
} 



.report-row td {
    background-color: transparent !important;
    background: transparent !important;
}

/* ===== MENU BADGE STYLES ===== */
.sidebar .nav-link .badge {
    position: absolute;
    top: 8px;
    right: 8px;
    font-size: 0.6em;
    min-width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: #ffc107 !important;
    color: #000 !important;
    font-weight: bold;
}

.sidebar .nav-link:hover .badge {
    background-color: #ffca2c !important;
}

/* ===== LOGIN PAGE RESPONSIVE ===== */
@media (max-width: 576px) {
    body.login-page {
        padding: 10px;
    }
    
    .login-card {
        margin: 10px;
        max-width: 100%;
    }
    
    .login-header {
        padding: 20px;
    }
    
    .login-body {
        padding: 20px;
    }
} 



.report-row td {
    background-color: transparent !important;
    background: transparent !important;
}

/* ===== MENU BADGE STYLES ===== */
.sidebar .nav-link .badge {
    position: absolute;
    top: 8px;
    right: 8px;
    font-size: 0.6em;
    min-width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: #ffc107 !important;
    color: #000 !important;
    font-weight: bold;
}

.sidebar .nav-link:hover .badge {
    background-color: #ffca2c !important;
}

/* ===== LOGIN PAGE RESPONSIVE ===== */
@media (max-width: 576px) {
    body.login-page {
        padding: 10px;
    }
    
    .login-card {
        margin: 10px;
        max-width: 100%;
    }
    
    .login-header {
        padding: 20px;
    }
    
    .login-body {
        padding: 20px;
    }
} 



.report-row td {
    background-color: transparent !important;
    background: transparent !important;
}

/* ===== MENU BADGE STYLES ===== */
.sidebar .nav-link .badge {
    position: absolute;
    top: 8px;
    right: 8px;
    font-size: 0.6em;
    min-width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: #ffc107 !important;
    color: #000 !important;
    font-weight: bold;
}

.sidebar .nav-link:hover .badge {
    background-color: #ffca2c !important;
}

/* ===== LOGIN PAGE RESPONSIVE ===== */
@media (max-width: 576px) {
    body.login-page {
        padding: 10px;
    }
    
    .login-card {
        margin: 10px;
        max-width: 100%;
    }
    
    .login-header {
        padding: 20px;
    }
    
    .login-body {
        padding: 20px;
    }
} 



.report-row td {
    background-color: transparent !important;
    background: transparent !important;
}

/* ===== MENU BADGE STYLES ===== */
.sidebar .nav-link .badge {
    position: absolute;
    top: 8px;
    right: 8px;
    font-size: 0.6em;
    min-width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: #ffc107 !important;
    color: #000 !important;
    font-weight: bold;
}

.sidebar .nav-link:hover .badge {
    background-color: #ffca2c !important;
}

/* ===== LOGIN PAGE RESPONSIVE ===== */
@media (max-width: 576px) {
    body.login-page {
        padding: 10px;
    }
    
    .login-card {
        margin: 10px;
        max-width: 100%;
    }
    
    .login-header {
        padding: 20px;
    }
    
    .login-body {
        padding: 20px;
    }
} 



.report-row td {
    background-color: transparent !important;
    background: transparent !important;
}

/* ===== MENU BADGE STYLES ===== */
.sidebar .nav-link .badge {
    position: absolute;
    top: 8px;
    right: 8px;
    font-size: 0.6em;
    min-width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: #ffc107 !important;
    color: #000 !important;
    font-weight: bold;
}

.sidebar .nav-link:hover .badge {
    background-color: #ffca2c !important;
}

/* ===== LOGIN PAGE RESPONSIVE ===== */
@media (max-width: 576px) {
    body.login-page {
        padding: 10px;
    }
    
    .login-card {
        margin: 10px;
        max-width: 100%;
    }
    
    .login-header {
        padding: 20px;
    }
    
    .login-body {
        padding: 20px;
    }
} 



.report-row td {
    background-color: transparent !important;
    background: transparent !important;
}

/* ===== MENU BADGE STYLES ===== */
.sidebar .nav-link .badge {
    position: absolute;
    top: 8px;
    right: 8px;
    font-size: 0.6em;
    min-width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: #ffc107 !important;
    color: #000 !important;
    font-weight: bold;
}

.sidebar .nav-link:hover .badge {
    background-color: #ffca2c !important;
}

/* ===== LOGIN PAGE RESPONSIVE ===== */
@media (max-width: 576px) {
    body.login-page {
        padding: 10px;
    }
    
    .login-card {
        margin: 10px;
        max-width: 100%;
    }
    
    .login-header {
        padding: 20px;
    }
    
    .login-body {
        padding: 20px;
    }
} 



.report-row td {
    background-color: transparent !important;
    background: transparent !important;
}

/* ===== MENU BADGE STYLES ===== */
.sidebar .nav-link .badge {
    position: absolute;
    top: 8px;
    right: 8px;
    font-size: 0.6em;
    min-width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: #ffc107 !important;
    color: #000 !important;
    font-weight: bold;
}

.sidebar .nav-link:hover .badge {
    background-color: #ffca2c !important;
}

/* ===== LOGIN PAGE RESPONSIVE ===== */
@media (max-width: 576px) {
    body.login-page {
        padding: 10px;
    }
    
    .login-card {
        margin: 10px;
        max-width: 100%;
    }
    
    .login-header {
        padding: 20px;
    }
    
    .login-body {
        padding: 20px;
    }
} 



.report-row td {
    background-color: transparent !important;
    background: transparent !important;
}

/* ===== MENU BADGE STYLES ===== */
.sidebar .nav-link .badge {
    position: absolute;
    top: 8px;
    right: 8px;
    font-size: 0.6em;
    min-width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: #ffc107 !important;
    color: #000 !important;
    font-weight: bold;
}

.sidebar .nav-link:hover .badge {
    background-color: #ffca2c !important;
}

/* ===== LOGIN PAGE RESPONSIVE ===== */
@media (max-width: 576px) {
    body.login-page {
        padding: 10px;
    }
    
    .login-card {
        margin: 10px;
        max-width: 100%;
    }
    
    .login-header {
        padding: 20px;
    }
    
    .login-body {
        padding: 20px;
    }
} 



.report-row td {
    background-color: transparent !important;
    background: transparent !important;
}

/* ===== MENU BADGE STYLES ===== */
.sidebar .nav-link .badge {
    position: absolute;
    top: 8px;
    right: 8px;
    font-size: 0.6em;
    min-width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: #ffc107 !important;
    color: #000 !important;
    font-weight: bold;
}

.sidebar .nav-link:hover .badge {
    background-color: #ffca2c !important;
}

/* ===== LOGIN PAGE RESPONSIVE ===== */
@media (max-width: 576px) {
    body.login-page {
        padding: 10px;
    }
    
    .login-card {
        margin: 10px;
        max-width: 100%;
    }
    
    .login-header {
        padding: 20px;
    }
    
    .login-body {
        padding: 20px;
    }
} 



.report-row td {
    background-color: transparent !important;
    background: transparent !important;
}

/* ===== MENU BADGE STYLES ===== */
.sidebar .nav-link .badge {
    position: absolute;
    top: 8px;
    right: 8px;
    font-size: 0.6em;
    min-width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: #ffc107 !important;
    color: #000 !important;
    font-weight: bold;
}

.sidebar .nav-link:hover .badge {
    background-color: #ffca2c !important;
}

/* ===== LOGIN PAGE RESPONSIVE ===== */
@media (max-width: 576px) {
    body.login-page {
        padding: 10px;
    }
    
    .login-card {
        margin: 10px;
        max-width: 100%;
    }
    
    .login-header {
        padding: 20px;
    }
    
    .login-body {
        padding: 20px;
    }
} 



.report-row td {
    background-color: transparent !important;
    background: transparent !important;
}

/* ===== MENU BADGE STYLES ===== */
.sidebar .nav-link .badge {
    position: absolute;
    top: 8px;
    right: 8px;
    font-size: 0.6em;
    min-width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: #ffc107 !important;
    color: #000 !important;
    font-weight: bold;
}

.sidebar .nav-link:hover .badge {
    background-color: #ffca2c !important;
}

/* ===== LOGIN PAGE RESPONSIVE ===== */
@media (max-width: 576px) {
    body.login-page {
        padding: 10px;
    }
    
    .login-card {
        margin: 10px;
        max-width: 100%;
    }
    
    .login-header {
        padding: 20px;
    }
    
    .login-body {
        padding: 20px;
    }
} 



.report-row td {
    background-color: transparent !important;
    background: transparent !important;
}

/* ===== MENU BADGE STYLES ===== */
.sidebar .nav-link .badge {
    position: absolute;
    top: 8px;
    right: 8px;
    font-size: 0.6em;
    min-width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: #ffc107 !important;
    color: #000 !important;
    font-weight: bold;
}

.sidebar .nav-link:hover .badge {
    background-color: #ffca2c !important;
}

/* ===== LOGIN PAGE RESPONSIVE ===== */
@media (max-width: 576px) {
    body.login-page {
        padding: 10px;
    }
    
    .login-card {
        margin: 10px;
        max-width: 100%;
    }
    
    .login-header {
        padding: 20px;
    }
    
    .login-body {
        padding: 20px;
    }
} 



.report-row td {
    background-color: transparent !important;
    background: transparent !important;
}

/* ===== MENU BADGE STYLES ===== */
.sidebar .nav-link .badge {
    position: absolute;
    top: 8px;
    right: 8px;
    font-size: 0.6em;
    min-width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: #ffc107 !important;
    color: #000 !important;
    font-weight: bold;
}

.sidebar .nav-link:hover .badge {
    background-color: #ffca2c !important;
}

/* ===== LOGIN PAGE RESPONSIVE ===== */
@media (max-width: 576px) {
    body.login-page {
        padding: 10px;
    }
    
    .login-card {
        margin: 10px;
        max-width: 100%;
    }
    
    .login-header {
        padding: 20px;
    }
    
    .login-body {
        padding: 20px;
    }
} 



.report-row td {
    background-color: transparent !important;
    background: transparent !important;
}

/* ===== MENU BADGE STYLES ===== */
.sidebar .nav-link .badge {
    position: absolute;
    top: 8px;
    right: 8px;
    font-size: 0.6em;
    min-width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: #ffc107 !important;
    color: #000 !important;
    font-weight: bold;
}

.sidebar .nav-link:hover .badge {
    background-color: #ffca2c !important;
}

/* ===== LOGIN PAGE RESPONSIVE ===== */
@media (max-width: 576px) {
    body.login-page {
        padding: 10px;
    }
    
    .login-card {
        margin: 10px;
        max-width: 100%;
    }
    
    .login-header {
        padding: 20px;
    }
    
    .login-body {
        padding: 20px;
    }
} 



.report-row td {
    background-color: transparent !important;
    background: transparent !important;
}

/* ===== MENU BADGE STYLES ===== */
.sidebar .nav-link .badge {
    position: absolute;
    top: 8px;
    right: 8px;
    font-size: 0.6em;
    min-width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: #ffc107 !important;
    color: #000 !important;
    font-weight: bold;
}

.sidebar .nav-link:hover .badge {
    background-color: #ffca2c !important;
}

/* ===== LOGIN PAGE RESPONSIVE ===== */
@media (max-width: 576px) {
    body.login-page {
        padding: 10px;
    }
    
    .login-card {
        margin: 10px;
        max-width: 100%;
    }
    
    .login-header {
        padding: 20px;
    }
    
    .login-body {
        padding: 20px;
    }
} 



.report-row td {
    background-color: transparent !important;
    background: transparent !important;
}

/* ===== MENU BADGE STYLES ===== */
.sidebar .nav-link .badge {
    position: absolute;
    top: 8px;
    right: 8px;
    font-size: 0.6em;
    min-width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: #ffc107 !important;
    color: #000 !important;
    font-weight: bold;
}

.sidebar .nav-link:hover .badge {
    background-color: #ffca2c !important;
}

/* ===== LOGIN PAGE RESPONSIVE ===== */
@media (max-width: 576px) {
    body.login-page {
        padding: 10px;
    }
    
    .login-card {
        margin: 10px;
        max-width: 100%;
    }
    
    .login-header {
        padding: 20px;
    }
    
    .login-body {
        padding: 20px;
    }
} 



.report-row td {
    background-color: transparent !important;
    background: transparent !important;
}

/* ===== MENU BADGE STYLES ===== */
.sidebar .nav-link .badge {
    position: absolute;
    top: 8px;
    right: 8px;
    font-size: 0.6em;
    min-width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: #ffc107 !important;
    color: #000 !important;
    font-weight: bold;
}

.sidebar .nav-link:hover .badge {
    background-color: #ffca2c !important;
}

/* ===== LOGIN PAGE RESPONSIVE ===== */
@media (max-width: 576px) {
    body.login-page {
        padding: 10px;
    }
    
    .login-card {
        margin: 10px;
        max-width: 100%;
    }
    
    .login-header {
        padding: 20px;
    }
    
    .login-body {
        padding: 20px;
    }
} 



.report-row td {
    background-color: transparent !important;
    background: transparent !important;
}

/* ===== MENU BADGE STYLES ===== */
.sidebar .nav-link .badge {
    position: absolute;
    top: 8px;
    right: 8px;
    font-size: 0.6em;
    min-width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: #ffc107 !important;
    color: #000 !important;
    font-weight: bold;
}

.sidebar .nav-link:hover .badge {
    background-color: #ffca2c !important;
}

/* ===== LOGIN PAGE RESPONSIVE ===== */
@media (max-width: 576px) {
    body.login-page {
        padding: 10px;
    }
    
    .login-card {
        margin: 10px;
        max-width: 100%;
    }
    
    .login-header {
        padding: 20px;
    }
    
    .login-body {
        padding: 20px;
    }
} 



.report-row td {
    background-color: transparent !important;
    background: transparent !important;
}

/* ===== MENU BADGE STYLES ===== */
.sidebar .nav-link .badge {
    position: absolute;
    top: 8px;
    right: 8px;
    font-size: 0.6em;
    min-width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: #ffc107 !important;
    color: #000 !important;
    font-weight: bold;
}

.sidebar .nav-link:hover .badge {
    background-color: #ffca2c !important;
}

/* ===== LOGIN PAGE RESPONSIVE ===== */
@media (max-width: 576px) {
    body.login-page {
        padding: 10px;
    }
    
    .login-card {
        margin: 10px;
        max-width: 100%;
    }
    
    .login-header {
        padding: 20px;
    }
    
    .login-body {
        padding: 20px;
    }
} 



.report-row td {
    background-color: transparent !important;
    background: transparent !important;
}

/* ===== MENU BADGE STYLES ===== */
.sidebar .nav-link .badge {
    position: absolute;
    top: 8px;
    right: 8px;
    font-size: 0.6em;
    min-width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: #ffc107 !important;
    color: #000 !important;
    font-weight: bold;
}

.sidebar .nav-link:hover .badge {
    background-color: #ffca2c !important;
}

/* ===== LOGIN PAGE RESPONSIVE ===== */
@media (max-width: 576px) {
    body.login-page {
        padding: 10px;
    }
    
    .login-card {
        margin: 10px;
        max-width: 100%;
    }
    
    .login-header {
        padding: 20px;
    }
    
    .login-body {
        padding: 20px;
    }
} 



.report-row td {
    background-color: transparent !important;
    background: transparent !important;
}

/* ===== MENU BADGE STYLES ===== */
.sidebar .nav-link .badge {
    position: absolute;
    top: 8px;
    right: 8px;
    font-size: 0.6em;
    min-width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: #ffc107 !important;
    color: #000 !important;
    font-weight: bold;
}

.sidebar .nav-link:hover .badge {
    background-color: #ffca2c !important;
}

/* ===== LOGIN PAGE RESPONSIVE ===== */
@media (max-width: 576px) {
    body.login-page {
        padding: 10px;
    }
    
    .login-card {
        margin: 10px;
        max-width: 100%;
    }
    
    .login-header {
        padding: 20px;
    }
    
    .login-body {
        padding: 20px;
    }
} 



.report-row td {
    background-color: transparent !important;
    background: transparent !important;
}

/* ===== MENU BADGE STYLES ===== */
.sidebar .nav-link .badge {
    position: absolute;
    top: 8px;
    right: 8px;
    font-size: 0.6em;
    min-width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: #ffc107 !important;
    color: #000 !important;
    font-weight: bold;
}

.sidebar .nav-link:hover .badge {
    background-color: #ffca2c !important;
}

/* ===== LOGIN PAGE RESPONSIVE ===== */
@media (max-width: 576px) {
    body.login-page {
        padding: 10px;
    }
    
    .login-card {
        margin: 10px;
        max-width: 100%;
    }
    
    .login-header {
        padding: 20px;
    }
    
    .login-body {
        padding: 20px;
    }
} 



.report-row td {
    background-color: transparent !important;
    background: transparent !important;
}

/* ===== MENU BADGE STYLES ===== */
.sidebar .nav-link .badge {
    position: absolute;
    top: 8px;
    right: 8px;
    font-size: 0.6em;
    min-width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: #ffc107 !important;
    color: #000 !important;
    font-weight: bold;
}

.sidebar .nav-link:hover .badge {
    background-color: #ffca2c !important;
}

/* ===== LOGIN PAGE RESPONSIVE ===== */
@media (max-width: 576px) {
    body.login-page {
        padding: 10px;
    }
    
    .login-card {
        margin: 10px;
        max-width: 100%;
    }
    
    .login-header {
        padding: 20px;
    }
    
    .login-body {
        padding: 20px;
    }
} 



.report-row td {
    background-color: transparent !important;
    background: transparent !important;
}

/* ===== MENU BADGE STYLES ===== */
.sidebar .nav-link .badge {
    position: absolute;
    top: 8px;
    right: 8px;
    font-size: 0.6em;
    min-width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: #ffc107 !important;
    color: #000 !important;
    font-weight: bold;
}

.sidebar .nav-link:hover .badge {
    background-color: #ffca2c !important;
}

/* ===== LOGIN PAGE RESPONSIVE ===== */
@media (max-width: 576px) {
    body.login-page {
        padding: 10px;
    }
    
    .login-card {
        margin: 10px;
        max-width: 100%;
    }
    
    .login-header {
        padding: 20px;
    }
    
    .login-body {
        padding: 20px;
    }
} 



.report-row td {
    background-color: transparent !important;
    background: transparent !important;
}

/* ===== MENU BADGE STYLES ===== */
.sidebar .nav-link .badge {
    position: absolute;
    top: 8px;
    right: 8px;
    font-size: 0.6em;
    min-width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: #ffc107 !important;
    color: #000 !important;
    font-weight: bold;
}

.sidebar .nav-link:hover .badge {
    background-color: #ffca2c !important;
}

/* ===== LOGIN PAGE RESPONSIVE ===== */
@media (max-width: 576px) {
    body.login-page {
        padding: 10px;
    }
    
    .login-card {
        margin: 10px;
        max-width: 100%;
    }
    
    .login-header {
        padding: 20px;
    }
    
    .login-body {
        padding: 20px;
    }
} 



.report-row td {
    background-color: transparent !important;
    background: transparent !important;
}

/* ===== MENU BADGE STYLES ===== */
.sidebar .nav-link .badge {
    position: absolute;
    top: 8px;
    right: 8px;
    font-size: 0.6em;
    min-width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: #ffc107 !important;
    color: #000 !important;
    font-weight: bold;
}

.sidebar .nav-link:hover .badge {
    background-color: #ffca2c !important;
}

/* ===== LOGIN PAGE RESPONSIVE ===== */
@media (max-width: 576px) {
    body.login-page {
        padding: 10px;
    }
    
    .login-card {
        margin: 10px;
        max-width: 100%;
    }
    
    .login-header {
        padding: 20px;
    }
    
    .login-body {
        padding: 20px;
    }
} 



.report-row td {
    background-color: transparent !important;
    background: transparent !important;
}

/* ===== MENU BADGE STYLES ===== */
.sidebar .nav-link .badge {
    position: absolute;
    top: 8px;
    right: 8px;
    font-size: 0.6em;
    min-width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: #ffc107 !important;
    color: #000 !important;
    font-weight: bold;
}

.sidebar .nav-link:hover .badge {
    background-color: #ffca2c !important;
}

/* ===== LOGIN PAGE RESPONSIVE ===== */
@media (max-width: 576px) {
    body.login-page {
        padding: 10px;
    }
    
    .login-card {
        margin: 10px;
        max-width: 100%;
    }
    
    .login-header {
        padding: 20px;
    }
    
    .login-body {
        padding: 20px;
    }
} 



.report-row td {
    background-color: transparent !important;
    background: transparent !important;
}

/* ===== MENU BADGE STYLES ===== */
.sidebar .nav-link .badge {
    position: absolute;
    top: 8px;
    right: 8px;
    font-size: 0.6em;
    min-width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: #ffc107 !important;
    color: #000 !important;
    font-weight: bold;
}

.sidebar .nav-link:hover .badge {
    background-color: #ffca2c !important;
}

/* ===== LOGIN PAGE RESPONSIVE ===== */
@media (max-width: 576px) {
    body.login-page {
        padding: 10px;
    }
    
    .login-card {
        margin: 10px;
        max-width: 100%;
    }
    
    .login-header {
        padding: 20px;
    }
    
    .login-body {
        padding: 20px;
    }
} 



.report-row td {
    background-color: transparent !important;
    background: transparent !important;
}

/* ===== MENU BADGE STYLES ===== */
.sidebar .nav-link .badge {
    position: absolute;
    top: 8px;
    right: 8px;
    font-size: 0.6em;
    min-width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: #ffc107 !important;
    color: #000 !important;
    font-weight: bold;
}

.sidebar .nav-link:hover .badge {
    background-color: #ffca2c !important;
}

/* ===== LOGIN PAGE RESPONSIVE ===== */
@media (max-width: 576px) {
    body.login-page {
        padding: 10px;
    }
    
    .login-card {
        margin: 10px;
        max-width: 100%;
    }
    
    .login-header {
        padding: 20px;
    }
    
    .login-body {
        padding: 20px;
    }
} 



.report-row td {
    background-color: transparent !important;
    background: transparent !important;
}

/* ===== MENU BADGE STYLES ===== */
.sidebar .nav-link .badge {
    position: absolute;
    top: 8px;
    right: 8px;
    font-size: 0.6em;
    min-width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: #ffc107 !important;
    color: #000 !important;
    font-weight: bold;
}

.sidebar .nav-link:hover .badge {
    background-color: #ffca2c !important;
}

/* ===== LOGIN PAGE RESPONSIVE ===== */
@media (max-width: 576px) {
    body.login-page {
        padding: 10px;
    }
    
    .login-card {
        margin: 10px;
        max-width: 100%;
    }
    
    .login-header {
        padding: 20px;
    }
    
    .login-body {
        padding: 20px;
    }
} 



.report-row td {
    background-color: transparent !important;
    background: transparent !important;
}

/* ===== MENU BADGE STYLES ===== */
.sidebar .nav-link .badge {
    position: absolute;
    top: 8px;
    right: 8px;
    font-size: 0.6em;
    min-width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: #ffc107 !important;
    color: #000 !important;
    font-weight: bold;
}

.sidebar .nav-link:hover .badge {
    background-color: #ffca2c !important;
}

/* ===== LOGIN PAGE RESPONSIVE ===== */
@media (max-width: 576px) {
    body.login-page {
        padding: 10px;
    }
    
    .login-card {
        margin: 10px;
        max-width: 100%;
    }
    
    .login-header {
        padding: 20px;
    }
    
    .login-body {
        padding: 20px;
    }
} 



.report-row td {
    background-color: transparent !important;
    background: transparent !important;
}

/* ===== MENU BADGE STYLES ===== */
.sidebar .nav-link .badge {
    position: absolute;
    top: 8px;
    right: 8px;
    font-size: 0.6em;
    min-width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: #ffc107 !important;
    color: #000 !important;
    font-weight: bold;
}

.sidebar .nav-link:hover .badge {
    background-color: #ffca2c !important;
}

/* ===== LOGIN PAGE RESPONSIVE ===== */
@media (max-width: 576px) {
    body.login-page {
        padding: 10px;
    }
    
    .login-card {
        margin: 10px;
        max-width: 100%;
    }
    
    .login-header {
        padding: 20px;
    }
    
    .login-body {
        padding: 20px;
    }
} 



.report-row td {
    background-color: transparent !important;
    background: transparent !important;
}

/* ===== MENU BADGE STYLES ===== */
.sidebar .nav-link .badge {
    position: absolute;
    top: 8px;
    right: 8px;
    font-size: 0.6em;
    min-width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: #ffc107 !important;
    color: #000 !important;
    font-weight: bold;
}

.sidebar .nav-link:hover .badge {
    background-color: #ffca2c !important;
}

/* ===== LOGIN PAGE RESPONSIVE ===== */
@media (max-width: 576px) {
    body.login-page {
        padding: 10px;
    }
    
    .login-card {
        margin: 10px;
        max-width: 100%;
    }
    
    .login-header {
        padding: 20px;
    }
    
    .login-body {
        padding: 20px;
    }
} 



.report-row td {
    background-color: transparent !important;
    background: transparent !important;
}

/* ===== MENU BADGE STYLES ===== */
.sidebar .nav-link .badge {
    position: absolute;
    top: 8px;
    right: 8px;
    font-size: 0.6em;
    min-width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: #ffc107 !important;
    color: #000 !important;
    font-weight: bold;
}

.sidebar .nav-link:hover .badge {
    background-color: #ffca2c !important;
}

/* ===== LOGIN PAGE RESPONSIVE ===== */
@media (max-width: 576px) {
    body.login-page {
        padding: 10px;
    }
    
    .login-card {
        margin: 10px;
        max-width: 100%;
    }
    
    .login-header {
        padding: 20px;
    }
    
    .login-body {
        padding: 20px;
    }
} 



.report-row td {
    background-color: transparent !important;
    background: transparent !important;
}

/* ===== MENU BADGE STYLES ===== */
.sidebar .nav-link .badge {
    position: absolute;
    top: 8px;
    right: 8px;
    font-size: 0.6em;
    min-width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: #ffc107 !important;
    color: #000 !important;
    font-weight: bold;
}

.sidebar .nav-link:hover .badge {
    background-color: #ffca2c !important;
}

/* ===== LOGIN PAGE RESPONSIVE ===== */
@media (max-width: 576px) {
    body.login-page {
        padding: 10px;
    }
    
    .login-card {
        margin: 10px;
        max-width: 100%;
    }
    
    .login-header {
        padding: 20px;
    }
    
    .login-body {
        padding: 20px;
    }
} 



.report-row td {
    background-color: transparent !important;
    background: transparent !important;
}

/* ===== MENU BADGE STYLES ===== */
.sidebar .nav-link .badge {
    position: absolute;
    top: 8px;
    right: 8px;
    font-size: 0.6em;
    min-width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: #ffc107 !important;
    color: #000 !important;
    font-weight: bold;
}

.sidebar .nav-link:hover .badge {
    background-color: #ffca2c !important;
}

/* ===== LOGIN PAGE RESPONSIVE ===== */
@media (max-width: 576px) {
    body.login-page {
        padding: 10px;
    }
    
    .login-card {
        margin: 10px;
        max-width: 100%;
    }
    
    .login-header {
        padding: 20px;
    }
    
    .login-body {
        padding: 20px;
    }
} 



.report-row td {
    background-color: transparent !important;
    background: transparent !important;
}

/* ===== MENU BADGE STYLES ===== */
.sidebar .nav-link .badge {
    position: absolute;
    top: 8px;
    right: 8px;
    font-size: 0.6em;
    min-width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: #ffc107 !important;
    color: #000 !important;
    font-weight: bold;
}

.sidebar .nav-link:hover .badge {
    background-color: #ffca2c !important;
}

/* ===== LOGIN PAGE RESPONSIVE ===== */
@media (max-width: 576px) {
    body.login-page {
        padding: 10px;
    }
    
    .login-card {
        margin: 10px;
        max-width: 100%;
    }
    
    .login-header {
        padding: 20px;
    }
    
    .login-body {
        padding: 20px;
    }
} 



.report-row td {
    background-color: transparent !important;
    background: transparent !important;
}

/* ===== MENU BADGE STYLES ===== */
.sidebar .nav-link .badge {
    position: absolute;
    top: 8px;
    right: 8px;
    font-size: 0.6em;
    min-width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: #ffc107 !important;
    color: #000 !important;
    font-weight: bold;
}

.sidebar .nav-link:hover .badge {
    background-color: #ffca2c !important;
}

/* ===== LOGIN PAGE RESPONSIVE ===== */
@media (max-width: 576px) {
    body.login-page {
        padding: 10px;
    }
    
    .login-card {
        margin: 10px;
        max-width: 100%;
    }
    
    .login-header {
        padding: 20px;
    }
    
    .login-body {
        padding: 20px;
    }
} 



.report-row td {
    background-color: transparent !important;
    background: transparent !important;
}

/* ===== MENU BADGE STYLES ===== */
.sidebar .nav-link .badge {
    position: absolute;
    top: 8px;
    right: 8px;
    font-size: 0.6em;
    min-width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: #ffc107 !important;
    color: #000 !important;
    font-weight: bold;
}

.sidebar .nav-link:hover .badge {
    background-color: #ffca2c !important;
}

/* ===== LOGIN PAGE RESPONSIVE ===== */
@media (max-width: 576px) {
    body.login-page {
        padding: 10px;
    }
    
    .login-card {
        margin: 10px;
        max-width: 100%;
    }
    
    .login-header {
        padding: 20px;
    }
    
    .login-body {
        padding: 20px;
    }
} 



.report-row td {
    background-color: transparent !important;
    background: transparent !important;
}

/* ===== MENU BADGE STYLES ===== */
.sidebar .nav-link .badge {
    position: absolute;
    top: 8px;
    right: 8px;
    font-size: 0.6em;
    min-width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: #ffc107 !important;
    color: #000 !important;
    font-weight: bold;
}

.sidebar .nav-link:hover .badge {
    background-color: #ffca2c !important;
}

/* ===== LOGIN PAGE RESPONSIVE ===== */
@media (max-width: 576px) {
    body.login-page {
        padding: 10px;
    }
    
    .login-card {
        margin: 10px;
        max-width: 100%;
    }
    
    .login-header {
        padding: 20px;
    }
    
    .login-body {
        padding: 20px;
    }
} 



.report-row td {
    background-color: transparent !important;
    background: transparent !important;
}

/* ===== MENU BADGE STYLES ===== */
.sidebar .nav-link .badge {
    position: absolute;
    top: 8px;
    right: 8px;
    font-size: 0.6em;
    min-width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: #ffc107 !important;
    color: #000 !important;
    font-weight: bold;
}

.sidebar .nav-link:hover .badge {
    background-color: #ffca2c !important;
}

/* ===== LOGIN PAGE RESPONSIVE ===== */
@media (max-width: 576px) {
    body.login-page {
        padding: 10px;
    }
    
    .login-card {
        margin: 10px;
        max-width: 100%;
    }
    
    .login-header {
        padding: 20px;
    }
    
    .login-body {
        padding: 20px;
    }
} 



.report-row td {
    background-color: transparent !important;
    background: transparent !important;
}

/* ===== MENU BADGE STYLES ===== */
.sidebar .nav-link .badge {
    position: absolute;
    top: 8px;
    right: 8px;
    font-size: 0.6em;
    min-width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: #ffc107 !important;
    color: #000 !important;
    font-weight: bold;
}

.sidebar .nav-link:hover .badge {
    background-color: #ffca2c !important;
}

/* ===== LOGIN PAGE RESPONSIVE ===== */
@media (max-width: 576px) {
    body.login-page {
        padding: 10px;
    }
    
    .login-card {
        margin: 10px;
        max-width: 100%;
    }
    
    .login-header {
        padding: 20px;
    }
    
    .login-body {
        padding: 20px;
    }
} 



.report-row td {
    background-color: transparent !important;
    background: transparent !important;
}

/* ===== MENU BADGE STYLES ===== */
.sidebar .nav-link .badge {
    position: absolute;
    top: 8px;
    right: 8px;
    font-size: 0.6em;
    min-width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: #ffc107 !important;
    color: #000 !important;
    font-weight: bold;
}

.sidebar .nav-link:hover .badge {
    background-color: #ffca2c !important;
}

/* ===== LOGIN PAGE RESPONSIVE ===== */
@media (max-width: 576px) {
    body.login-page {
        padding: 10px;
    }
    
    .login-card {
        margin: 10px;
        max-width: 100%;
    }
    
    .login-header {
        padding: 20px;
    }
    
    .login-body {
        padding: 20px;
    }
} 



.report-row td {
    background-color: transparent !important;
    background: transparent !important;
}

/* ===== MENU BADGE STYLES ===== */
.sidebar .nav-link .badge {
    position: absolute;
    top: 8px;
    right: 8px;
    font-size: 0.6em;
    min-width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: #ffc107 !important;
    color: #000 !important;
    font-weight: bold;
}

.sidebar .nav-link:hover .badge {
    background-color: #ffca2c !important;
}

/* ===== LOGIN PAGE RESPONSIVE ===== */
@media (max-width: 576px) {
    body.login-page {
        padding: 10px;
    }
    
    .login-card {
        margin: 10px;
        max-width: 100%;
    }
    
    .login-header {
        padding: 20px;
    }
    
    .login-body {
        padding: 20px;
    }
} 



.report-row td {
    background-color: transparent !important;
    background: transparent !important;
}

/* ===== MENU BADGE STYLES ===== */
.sidebar .nav-link .badge {
    position: absolute;
    top: 8px;
    right: 8px;
    font-size: 0.6em;
    min-width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: #ffc107 !important;
    color: #000 !important;
    font-weight: bold;
}

.sidebar .nav-link:hover .badge {
    background-color: #ffca2c !important;
}

/* ===== LOGIN PAGE RESPONSIVE ===== */
@media (max-width: 576px) {
    body.login-page {
        padding: 10px;
    }
    
    .login-card {
        margin: 10px;
        max-width: 100%;
    }
    
    .login-header {
        padding: 20px;
    }
    
    .login-body {
        padding: 20px;
    }
} 



.report-row td {
    background-color: transparent !important;
    background: transparent !important;
}

/* ===== MENU BADGE STYLES ===== */
.sidebar .nav-link .badge {
    position: absolute;
    top: 8px;
    right: 8px;
    font-size: 0.6em;
    min-width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: #ffc107 !important;
    color: #000 !important;
    font-weight: bold;
}

.sidebar .nav-link:hover .badge {
    background-color: #ffca2c !important;
}

/* ===== LOGIN PAGE RESPONSIVE ===== */
@media (max-width: 576px) {
    body.login-page {
        padding: 10px;
    }
    
    .login-card {
        margin: 10px;
        max-width: 100%;
    }
    
    .login-header {
        padding: 20px;
    }
    
    .login-body {
        padding: 20px;
    }
} 



.report-row td {
    background-color: transparent !important;
    background: transparent !important;
}

/* ===== MENU BADGE STYLES ===== */
.sidebar .nav-link .badge {
    position: absolute;
    top: 8px;
    right: 8px;
    font-size: 0.6em;
    min-width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: #ffc107 !important;
    color: #000 !important;
    font-weight: bold;
}

.sidebar .nav-link:hover .badge {
    background-color: #ffca2c !important;
}

/* ===== LOGIN PAGE RESPONSIVE ===== */
@media (max-width: 576px) {
    body.login-page {
        padding: 10px;
    }
    
    .login-card {
        margin: 10px;
        max-width: 100%;
    }
    
    .login-header {
        padding: 20px;
    }
    
    .login-body {
        padding: 20px;
    }
} 



.report-row td {
    background-color: transparent !important;
    background: transparent !important;
}

/* ===== MENU BADGE STYLES ===== */
.sidebar .nav-link .badge {
    position: absolute;
    top: 8px;
    right: 8px;
    font-size: 0.6em;
    min-width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: #ffc107 !important;
    color: #000 !important;
    font-weight: bold;
}

.sidebar .nav-link:hover .badge {
    background-color: #ffca2c !important;
}

/* ===== LOGIN PAGE RESPONSIVE ===== */
@media (max-width: 576px) {
    body.login-page {
        padding: 10px;
    }
    
    .login-card {
        margin: 10px;
        max-width: 100%;
    }
    
    .login-header {
        padding: 20px;
    }
    
    .login-body {
        padding: 20px;
    }
} 



.report-row td {
    background-color: transparent !important;
    background: transparent !important;
}

/* ===== MENU BADGE STYLES ===== */
.sidebar .nav-link .badge {
    position: absolute;
    top: 8px;
    right: 8px;
    font-size: 0.6em;
    min-width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: #ffc107 !important;
    color: #000 !important;
    font-weight: bold;
}

.sidebar .nav-link:hover .badge {
    background-color: #ffca2c !important;
}

/* ===== LOGIN PAGE RESPONSIVE ===== */
@media (max-width: 576px) {
    body.login-page {
        padding: 10px;
    }
    
    .login-card {
        margin: 10px;
        max-width: 100%;
    }
    
    .login-header {
        padding: 20px;
    }
    
    .login-body {
        padding: 20px;
    }
} 



.report-row td {
    background-color: transparent !important;
    background: transparent !important;
}

/* ===== MENU BADGE STYLES ===== */
.sidebar .nav-link .badge {
    position: absolute;
    top: 8px;
    right: 8px;
    font-size: 0.6em;
    min-width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: #ffc107 !important;
    color: #000 !important;
    font-weight: bold;
}

.sidebar .nav-link:hover .badge {
    background-color: #ffca2c !important;
}

/* ===== LOGIN PAGE RESPONSIVE ===== */
@media (max-width: 576px) {
    body.login-page {
        padding: 10px;
    }
    
    .login-card {
        margin: 10px;
        max-width: 100%;
    }
    
    .login-header {
        padding: 20px;
    }
    
    .login-body {
        padding: 20px;
    }
} 



.report-row td {
    background-color: transparent !important;
    background: transparent !important;
}

/* ===== MENU BADGE STYLES ===== */
.sidebar .nav-link .badge {
    position: absolute;
    top: 8px;
    right: 8px;
    font-size: 0.6em;
    min-width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: #ffc107 !important;
    color: #000 !important;
    font-weight: bold;
}

.sidebar .nav-link:hover .badge {
    background-color: #ffca2c !important;
}

/* ===== LOGIN PAGE RESPONSIVE ===== */
@media (max-width: 576px) {
    body.login-page {
        padding: 10px;
    }
    
    .login-card {
        margin: 10px;
        max-width: 100%;
    }
    
    .login-header {
        padding: 20px;
    }
    
    .login-body {
        padding: 20px;
    }
} 



.report-row td {
    background-color: transparent !important;
    background: transparent !important;
}

/* ===== MENU BADGE STYLES ===== */
.sidebar .nav-link .badge {
    position: absolute;
    top: 8px;
    right: 8px;
    font-size: 0.6em;
    min-width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: #ffc107 !important;
    color: #000 !important;
    font-weight: bold;
}

.sidebar .nav-link:hover .badge {
    background-color: #ffca2c !important;
}

/* ===== LOGIN PAGE RESPONSIVE ===== */
@media (max-width: 576px) {
    body.login-page {
        padding: 10px;
    }
    
    .login-card {
        margin: 10px;
        max-width: 100%;
    }
    
    .login-header {
        padding: 20px;
    }
    
    .login-body {
        padding: 20px;
    }
} 



.report-row td {
    background-color: transparent !important;
    background: transparent !important;
}

/* ===== MENU BADGE STYLES ===== */
.sidebar .nav-link .badge {
    position: absolute;
    top: 8px;
    right: 8px;
    font-size: 0.6em;
    min-width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: #ffc107 !important;
    color: #000 !important;
    font-weight: bold;
}

.sidebar .nav-link:hover .badge {
    background-color: #ffca2c !important;
}

/* ===== LOGIN PAGE RESPONSIVE ===== */
@media (max-width: 576px) {
    body.login-page {
        padding: 10px;
    }
    
    .login-card {
        margin: 10px;
        max-width: 100%;
    }
    
    .login-header {
        padding: 20px;
    }
    
    .login-body {
        padding: 20px;
    }
} 



.report-row td {
    background-color: transparent !important;
    background: transparent !important;
}

/* ===== MENU BADGE STYLES ===== */
.sidebar .nav-link .badge {
    position: absolute;
    top: 8px;
    right: 8px;
    font-size: 0.6em;
    min-width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: #ffc107 !important;
    color: #000 !important;
    font-weight: bold;
}

.sidebar .nav-link:hover .badge {
    background-color: #ffca2c !important;
}

/* ===== LOGIN PAGE RESPONSIVE ===== */
@media (max-width: 576px) {
    body.login-page {
        padding: 10px;
    }
    
    .login-card {
        margin: 10px;
        max-width: 100%;
    }
    
    .login-header {
        padding: 20px;
    }
    
    .login-body {
        padding: 20px;
    }
} 



.report-row td {
    background-color: transparent !important;
    background: transparent !important;
}

/* ===== MENU BADGE STYLES ===== */
.sidebar .nav-link .badge {
    position: absolute;
    top: 8px;
    right: 8px;
    font-size: 0.6em;
    min-width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: #ffc107 !important;
    color: #000 !important;
    font-weight: bold;
}

.sidebar .nav-link:hover .badge {
    background-color: #ffca2c !important;
}

/* ===== LOGIN PAGE RESPONSIVE ===== */
@media (max-width: 576px) {
    body.login-page {
        padding: 10px;
    }
    
    .login-card {
        margin: 10px;
        max-width: 100%;
    }
    
    .login-header {
        padding: 20px;
    }
    
    .login-body {
        padding: 20px;
    }
} 



.report-row td {
    background-color: transparent !important;
    background: transparent !important;
}

/* ===== MENU BADGE STYLES ===== */
.sidebar .nav-link .badge {
    position: absolute;
    top: 8px;
    right: 8px;
    font-size: 0.6em;
    min-width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: #ffc107 !important;
    color: #000 !important;
    font-weight: bold;
}

.sidebar .nav-link:hover .badge {
    background-color: #ffca2c !important;
}

/* ===== LOGIN PAGE RESPONSIVE ===== */
@media (max-width: 576px) {
    body.login-page {
        padding: 10px;
    }
    
    .login-card {
        margin: 10px;
        max-width: 100%;
    }
    
    .login-header {
        padding: 20px;
    }
    
    .login-body {
        padding: 20px;
    }
} 



.report-row td {
    background-color: transparent !important;
    background: transparent !important;
}

/* ===== MENU BADGE STYLES ===== */
.sidebar .nav-link .badge {
    position: absolute;
    top: 8px;
    right: 8px;
    font-size: 0.6em;
    min-width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: #ffc107 !important;
    color: #000 !important;
    font-weight: bold;
}

.sidebar .nav-link:hover .badge {
    background-color: #ffca2c !important;
}

/* ===== LOGIN PAGE RESPONSIVE ===== */
@media (max-width: 576px) {
    body.login-page {
        padding: 10px;
    }
    
    .login-card {
        margin: 10px;
        max-width: 100%;
    }
    
    .login-header {
        padding: 20px;
    }
    
    .login-body {
        padding: 20px;
    }
} 



.report-row td {
    background-color: transparent !important;
    background: transparent !important;
}

/* ===== MENU BADGE STYLES ===== */
.sidebar .nav-link .badge {
    position: absolute;
    top: 8px;
    right: 8px;
    font-size: 0.6em;
    min-width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: #ffc107 !important;
    color: #000 !important;
    font-weight: bold;
}

.sidebar .nav-link:hover .badge {
    background-color: #ffca2c !important;
}

/* ===== LOGIN PAGE RESPONSIVE ===== */
@media (max-width: 576px) {
    body.login-page {
        padding: 10px;
    }
    
    .login-card {
        margin: 10px;
        max-width: 100%;
    }
    
    .login-header {
        padding: 20px;
    }
    
    .login-body {
        padding: 20px;
    }
} 



.report-row td {
    background-color: transparent !important;
    background: transparent !important;
}

/* ===== MENU BADGE STYLES ===== */
.sidebar .nav-link .badge {
    position: absolute;
    top: 8px;
    right: 8px;
    font-size: 0.6em;
    min-width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: #ffc107 !important;
    color: #000 !important;
    font-weight: bold;
}

.sidebar .nav-link:hover .badge {
    background-color: #ffca2c !important;
}

/* ===== LOGIN PAGE RESPONSIVE ===== */
@media (max-width: 576px) {
    body.login-page {
        padding: 10px;
    }
    
    .login-card {
        margin: 10px;
        max-width: 100%;
    }
    
    .login-header {
        padding: 20px;
    }
    
    .login-body {
        padding: 20px;
    }
} 



.report-row td {
    background-color: transparent !important;
    background: transparent !important;
}

/* ===== MENU BADGE STYLES ===== */
.sidebar .nav-link .badge {
    position: absolute;
    top: 8px;
    right: 8px;
    font-size: 0.6em;
    min-width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: #ffc107 !important;
    color: #000 !important;
    font-weight: bold;
}

.sidebar .nav-link:hover .badge {
    background-color: #ffca2c !important;
}

/* ===== LOGIN PAGE RESPONSIVE ===== */
@media (max-width: 576px) {
    body.login-page {
        padding: 10px;
    }
    
    .login-card {
        margin: 10px;
        max-width: 100%;
    }
    
    .login-header {
        padding: 20px;
    }
    
    .login-body {
        padding: 20px;
    }
} 



.report-row td {
    background-color: transparent !important;
    background: transparent !important;
}

/* ===== MENU BADGE STYLES ===== */
.sidebar .nav-link .badge {
    position: absolute;
    top: 8px;
    right: 8px;
    font-size: 0.6em;
    min-width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: #ffc107 !important;
    color: #000 !important;
    font-weight: bold;
}

.sidebar .nav-link:hover .badge {
    background-color: #ffca2c !important;
}

/* ===== LOGIN PAGE RESPONSIVE ===== */
@media (max-width: 576px) {
    body.login-page {
        padding: 10px;
    }
    
    .login-card {
        margin: 10px;
        max-width: 100%;
    }
    
    .login-header {
        padding: 20px;
    }
    
    .login-body {
        padding: 20px;
    }
} 



.report-row td {
    background-color: transparent !important;
    background: transparent !important;
}

/* ===== MENU BADGE STYLES ===== */
.sidebar .nav-link .badge {
    position: absolute;
    top: 8px;
    right: 8px;
    font-size: 0.6em;
    min-width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: #ffc107 !important;
    color: #000 !important;
    font-weight: bold;
}

.sidebar .nav-link:hover .badge {
    background-color: #ffca2c !important;
}

/* ===== LOGIN PAGE RESPONSIVE ===== */
@media (max-width: 576px) {
    body.login-page {
        padding: 10px;
    }
    
    .login-card {
        margin: 10px;
        max-width: 100%;
    }
    
    .login-header {
        padding: 20px;
    }
    
    .login-body {
        padding: 20px;
    }
} 



.report-row td {
    background-color: transparent !important;
    background: transparent !important;
}

/* ===== MENU BADGE STYLES ===== */
.sidebar .nav-link .badge {
    position: absolute;
    top: 8px;
    right: 8px;
    font-size: 0.6em;
    min-width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: #ffc107 !important;
    color: #000 !important;
    font-weight: bold;
}

.sidebar .nav-link:hover .badge {
    background-color: #ffca2c !important;
}

/* ===== LOGIN PAGE RESPONSIVE ===== */
@media (max-width: 576px) {
    body.login-page {
        padding: 10px;
    }
    
    .login-card {
        margin: 10px;
        max-width: 100%;
    }
    
    .login-header {
        padding: 20px;
    }
    
    .login-body {
        padding: 20px;
    }
} 



.report-row td {
    background-color: transparent !important;
    background: transparent !important;
}

/* ===== MENU BADGE STYLES ===== */
.sidebar .nav-link .badge {
    position: absolute;
    top: 8px;
    right: 8px;
    font-size: 0.6em;
    min-width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: #ffc107 !important;
    color: #000 !important;
    font-weight: bold;
}

.sidebar .nav-link:hover .badge {
    background-color: #ffca2c !important;
}

/* ===== LOGIN PAGE RESPONSIVE ===== */
@media (max-width: 576px) {
    body.login-page {
        padding: 10px;
    }
    
    .login-card {
        margin: 10px;
        max-width: 100%;
    }
    
    .login-header {
        padding: 20px;
    }
    
    .login-body {
        padding: 20px;
    }
} 



.report-row td {
    background-color: transparent !important;
    background: transparent !important;
}

/* ===== MENU BADGE STYLES ===== */
.sidebar .nav-link .badge {
    position: absolute;
    top: 8px;
    right: 8px;
    font-size: 0.6em;
    min-width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: #ffc107 !important;
    color: #000 !important;
    font-weight: bold;
}

.sidebar .nav-link:hover .badge {
    background-color: #ffca2c !important;
}

/* ===== LOGIN PAGE RESPONSIVE ===== */
@media (max-width: 576px) {
    body.login-page {
        padding: 10px;
    }
    
    .login-card {
        margin: 10px;
        max-width: 100%;
    }
    
    .login-header {
        padding: 20px;
    }
    
    .login-body {
        padding: 20px;
    }
} 



.report-row td {
    background-color: transparent !important;
    background: transparent !important;
}

/* ===== MENU BADGE STYLES ===== */
.sidebar .nav-link .badge {
    position: absolute;
    top: 8px;
    right: 8px;
    font-size: 0.6em;
    min-width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: #ffc107 !important;
    color: #000 !important;
    font-weight: bold;
}

.sidebar .nav-link:hover .badge {
    background-color: #ffca2c !important;
}

/* ===== LOGIN PAGE RESPONSIVE ===== */
@media (max-width: 576px) {
    body.login-page {
        padding: 10px;
    }
    
    .login-card {
        margin: 10px;
        max-width: 100%;
    }
    
    .login-header {
        padding: 20px;
    }
    
    .login-body {
        padding: 20px;
    }
} 



.report-row td {
    background-color: transparent !important;
    background: transparent !important;
}

/* ===== MENU BADGE STYLES ===== */
.sidebar .nav-link .badge {
    position: absolute;
    top: 8px;
    right: 8px;
    font-size: 0.6em;
    min-width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: #ffc107 !important;
    color: #000 !important;
    font-weight: bold;
}

.sidebar .nav-link:hover .badge {
    background-color: #ffca2c !important;
}

/* ===== LOGIN PAGE RESPONSIVE ===== */
@media (max-width: 576px) {
    body.login-page {
        padding: 10px;
    }
    
    .login-card {
        margin: 10px;
        max-width: 100%;
    }
    
    .login-header {
        padding: 20px;
    }
    
    .login-body {
        padding: 20px;
    }
} 



.report-row td {
    background-color: transparent !important;
    background: transparent !important;
}

/* ===== MENU BADGE STYLES ===== */
.sidebar .nav-link .badge {
    position: absolute;
    top: 8px;
    right: 8px;
    font-size: 0.6em;
    min-width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: #ffc107 !important;
    color: #000 !important;
    font-weight: bold;
}

.sidebar .nav-link:hover .badge {
    background-color: #ffca2c !important;
}

/* ===== LOGIN PAGE RESPONSIVE ===== */
@media (max-width: 576px) {
    body.login-page {
        padding: 10px;
    }
    
    .login-card {
        margin: 10px;
        max-width: 100%;
    }
    
    .login-header {
        padding: 20px;
    }
    
    .login-body {
        padding: 20px;
    }
} 



.report-row td {
    background-color: transparent !important;
    background: transparent !important;
}

/* ===== MENU BADGE STYLES ===== */
.sidebar .nav-link .badge {
    position: absolute;
    top: 8px;
    right: 8px;
    font-size: 0.6em;
    min-width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: #ffc107 !important;
    color: #000 !important;
    font-weight: bold;
}

.sidebar .nav-link:hover .badge {
    background-color: #ffca2c !important;
}

/* ===== LOGIN PAGE RESPONSIVE ===== */
@media (max-width: 576px) {
    body.login-page {
        padding: 10px;
    }
    
    .login-card {
        margin: 10px;
        max-width: 100%;
    }
    
    .login-header {
        padding: 20px;
    }
    
    .login-body {
        padding: 20px;
    }
} 



.report-row td {
    background-color: transparent !important;
    background: transparent !important;
}

/* ===== MENU BADGE STYLES ===== */
.sidebar .nav-link .badge {
    position: absolute;
    top: 8px;
    right: 8px;
    font-size: 0.6em;
    min-width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: #ffc107 !important;
    color: #000 !important;
    font-weight: bold;
}

.sidebar .nav-link:hover .badge {
    background-color: #ffca2c !important;
}

/* ===== LOGIN PAGE RESPONSIVE ===== */
@media (max-width: 576px) {
    body.login-page {
        padding: 10px;
    }
    
    .login-card {
        margin: 10px;
        max-width: 100%;
    }
    
    .login-header {
        padding: 20px;
    }
    
    .login-body {
        padding: 20px;
    }
} 



.report-row td {
    background-color: transparent !important;
    background: transparent !important;
}

/* ===== MENU BADGE STYLES ===== */
.sidebar .nav-link .badge {
    position: absolute;
    top: 8px;
    right: 8px;
    font-size: 0.6em;
    min-width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: #ffc107 !important;
    color: #000 !important;
    font-weight: bold;
}

.sidebar .nav-link:hover .badge {
    background-color: #ffca2c !important;
}

/* ===== LOGIN PAGE RESPONSIVE ===== */
@media (max-width: 576px) {
    body.login-page {
        padding: 10px;
    }
    
    .login-card {
        margin: 10px;
        max-width: 100%;
    }
    
    .login-header {
        padding: 20px;
    }
    
    .login-body {
        padding: 20px;
    }
} 



.report-row td {
    background-color: transparent !important;
    background: transparent !important;
}

/* ===== MENU BADGE STYLES ===== */
.sidebar .nav-link .badge {
    position: absolute;
    top: 8px;
    right: 8px;
    font-size: 0.6em;
    min-width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: #ffc107 !important;
    color: #000 !important;
    font-weight: bold;
}

.sidebar .nav-link:hover .badge {
    background-color: #ffca2c !important;
}

/* ===== LOGIN PAGE RESPONSIVE ===== */
@media (max-width: 576px) {
    body.login-page {
        padding: 10px;
    }
    
    .login-card {
        margin: 10px;
        max-width: 100%;
    }
    
    .login-header {
        padding: 20px;
    }
    
    .login-body {
        padding: 20px;
    }
} 



.report-row td {
    background-color: transparent !important;
    background: transparent !important;
}

/* ===== MENU BADGE STYLES ===== */
.sidebar .nav-link .badge {
    position: absolute;
    top: 8px;
    right: 8px;
    font-size: 0.6em;
    min-width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: #ffc107 !important;
    color: #000 !important;
    font-weight: bold;
}

.sidebar .nav-link:hover .badge {
    background-color: #ffca2c !important;
}

/* ===== LOGIN PAGE RESPONSIVE ===== */
@media (max-width: 576px) {
    body.login-page {
        padding: 10px;
    }
    
    .login-card {
        margin: 10px;
        max-width: 100%;
    }
    
    .login-header {
        padding: 20px;
    }
    
    .login-body {
        padding: 20px;
    }
} 



.report-row td {
    background-color: transparent !important;
    background: transparent !important;
}

/* ===== MENU BADGE STYLES ===== */
.sidebar .nav-link .badge {
    position: absolute;
    top: 8px;
    right: 8px;
    font-size: 0.6em;
    min-width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: #ffc107 !important;
    color: #000 !important;
    font-weight: bold;
}

.sidebar .nav-link:hover .badge {
    background-color: #ffca2c !important;
}

/* ===== LOGIN PAGE RESPONSIVE ===== */
@media (max-width: 576px) {
    body.login-page {
        padding: 10px;
    }
    
    .login-card {
        margin: 10px;
        max-width: 100%;
    }
    
    .login-header {
        padding: 20px;
    }
    
    .login-body {
        padding: 20px;
    }
} 



.report-row td {
    background-color: transparent !important;
    background: transparent !important;
}

/* ===== MENU BADGE STYLES ===== */
.sidebar .nav-link .badge {
    position: absolute;
    top: 8px;
    right: 8px;
    font-size: 0.6em;
    min-width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: #ffc107 !important;
    color: #000 !important;
    font-weight: bold;
}

.sidebar .nav-link:hover .badge {
    background-color: #ffca2c !important;
}

/* ===== LOGIN PAGE RESPONSIVE ===== */
@media (max-width: 576px) {
    body.login-page {
        padding: 10px;
    }
    
    .login-card {
        margin: 10px;
        max-width: 100%;
    }
    
    .login-header {
        padding: 20px;
    }
    
    .login-body {
        padding: 20px;
    }
} 



.report-row td {
    background-color: transparent !important;
    background: transparent !important;
}

/* ===== MENU BADGE STYLES ===== */
.sidebar .nav-link .badge {
    position: absolute;
    top: 8px;
    right: 8px;
    font-size: 0.6em;
    min-width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: #ffc107 !important;
    color: #000 !important;
    font-weight: bold;
}

.sidebar .nav-link:hover .badge {
    background-color: #ffca2c !important;
}

/* ===== LOGIN PAGE RESPONSIVE ===== */
@media (max-width: 576px) {
    body.login-page {
        padding: 10px;
    }
    
    .login-card {
        margin: 10px;
        max-width: 100%;
    }
    
    .login-header {
        padding: 20px;
    }
    
    .login-body {
        padding: 20px;
    }
} 



.report-row td {
    background-color: transparent !important;
    background: transparent !important;
}

/* ===== MENU BADGE STYLES ===== */
.sidebar .nav-link .badge {
    position: absolute;
    top: 8px;
    right: 8px;
    font-size: 0.6em;
    min-width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: #ffc107 !important;
    color: #000 !important;
    font-weight: bold;
}

.sidebar .nav-link:hover .badge {
    background-color: #ffca2c !important;
}

/* ===== LOGIN PAGE RESPONSIVE ===== */
@media (max-width: 576px) {
    body.login-page {
        padding: 10px;
    }
    
    .login-card {
        margin: 10px;
        max-width: 100%;
    }
    
    .login-header {
        padding: 20px;
    }
    
    .login-body {
        padding: 20px;
    }
} 



.report-row td {
    background-color: transparent !important;
    background: transparent !important;
}

/* ===== MENU BADGE STYLES ===== */
.sidebar .nav-link .badge {
    position: absolute;
    top: 8px;
    right: 8px;
    font-size: 0.6em;
    min-width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: #ffc107 !important;
    color: #000 !important;
    font-weight: bold;
}

.sidebar .nav-link:hover .badge {
    background-color: #ffca2c !important;
}

/* ===== LOGIN PAGE RESPONSIVE ===== */
@media (max-width: 576px) {
    body.login-page {
        padding: 10px;
    }
    
    .login-card {
        margin: 10px;
        max-width: 100%;
    }
    
    .login-header {
        padding: 20px;
    }
    
    .login-body {
        padding: 20px;
    }
} 



.report-row td {
    background-color: transparent !important;
    background: transparent !important;
}

/* ===== MENU BADGE STYLES ===== */
.sidebar .nav-link .badge {
    position: absolute;
    top: 8px;
    right: 8px;
    font-size: 0.6em;
    min-width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: #ffc107 !important;
    color: #000 !important;
    font-weight: bold;
}

.sidebar .nav-link:hover .badge {
    background-color: #ffca2c !important;
}

/* ===== LOGIN PAGE RESPONSIVE ===== */
@media (max-width: 576px) {
    body.login-page {
        padding: 10px;
    }
    
    .login-card {
        margin: 10px;
        max-width: 100%;
    }
    
    .login-header {
        padding: 20px;
    }
    
    .login-body {
        padding: 20px;
    }
} 



.report-row td {
    background-color: transparent !important;
    background: transparent !important;
}

/* ===== MENU BADGE STYLES ===== */
.sidebar .nav-link .badge {
    position: absolute;
    top: 8px;
    right: 8px;
    font-size: 0.6em;
    min-width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: #ffc107 !important;
    color: #000 !important;
    font-weight: bold;
}

.sidebar .nav-link:hover .badge {
    background-color: #ffca2c !important;
}

/* ===== LOGIN PAGE RESPONSIVE ===== */
@media (max-width: 576px) {
    body.login-page {
        padding: 10px;
    }
    
    .login-card {
        margin: 10px;
        max-width: 100%;
    }
    
    .login-header {
        padding: 20px;
    }
    
    .login-body {
        padding: 20px;
    }
} 



.report-row td {
    background-color: transparent !important;
    background: transparent !important;
}

/* ===== MENU BADGE STYLES ===== */
.sidebar .nav-link .badge {
    position: absolute;
    top: 8px;
    right: 8px;
    font-size: 0.6em;
    min-width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: #ffc107 !important;
    color: #000 !important;
    font-weight: bold;
}

.sidebar .nav-link:hover .badge {
    background-color: #ffca2c !important;
}

/* ===== LOGIN PAGE RESPONSIVE ===== */
@media (max-width: 576px) {
    body.login-page {
        padding: 10px;
    }
    
    .login-card {
        margin: 10px;
        max-width: 100%;
    }
    
    .login-header {
        padding: 20px;
    }
    
    .login-body {
        padding: 20px;
    }
} 



.report-row td {
    background-color: transparent !important;
    background: transparent !important;
}

/* ===== MENU BADGE STYLES ===== */
.sidebar .nav-link .badge {
    position: absolute;
    top: 8px;
    right: 8px;
    font-size: 0.6em;
    min-width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: #ffc107 !important;
    color: #000 !important;
    font-weight: bold;
}

.sidebar .nav-link:hover .badge {
    background-color: #ffca2c !important;
}

/* ===== LOGIN PAGE RESPONSIVE ===== */
@media (max-width: 576px) {
    body.login-page {
        padding: 10px;
    }
    
    .login-card {
        margin: 10px;
        max-width: 100%;
    }
    
    .login-header {
        padding: 20px;
    }
    
    .login-body {
        padding: 20px;
    }
} 



.report-row td {
    background-color: transparent !important;
    background: transparent !important;
}

/* ===== MENU BADGE STYLES ===== */
.sidebar .nav-link .badge {
    position: absolute;
    top: 8px;
    right: 8px;
    font-size: 0.6em;
    min-width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: #ffc107 !important;
    color: #000 !important;
    font-weight: bold;
}

.sidebar .nav-link:hover .badge {
    background-color: #ffca2c !important;
}

/* ===== LOGIN PAGE RESPONSIVE ===== */
@media (max-width: 576px) {
    body.login-page {
        padding: 10px;
    }
    
    .login-card {
        margin: 10px;
        max-width: 100%;
    }
    
    .login-header {
        padding: 20px;
    }
    
    .login-body {
        padding: 20px;
    }
} 



.report-row td {
    background-color: transparent !important;
    background: transparent !important;
}

/* ===== MENU BADGE STYLES ===== */
.sidebar .nav-link .badge {
    position: absolute;
    top: 8px;
    right: 8px;
    font-size: 0.6em;
    min-width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: #ffc107 !important;
    color: #000 !important;
    font-weight: bold;
}

.sidebar .nav-link:hover .badge {
    background-color: #ffca2c !important;
}

/* ===== LOGIN PAGE RESPONSIVE ===== */
@media (max-width: 576px) {
    body.login-page {
        padding: 10px;
    }
    
    .login-card {
        margin: 10px;
        max-width: 100%;
    }
    
    .login-header {
        padding: 20px;
    }
    
    .login-body {
        padding: 20px;
    }
} 



.report-row td {
    background-color: transparent !important;
    background: transparent !important;
}

/* ===== MENU BADGE STYLES ===== */
.sidebar .nav-link .badge {
    position: absolute;
    top: 8px;
    right: 8px;
    font-size: 0.6em;
    min-width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: #ffc107 !important;
    color: #000 !important;
    font-weight: bold;
}

.sidebar .nav-link:hover .badge {
    background-color: #ffca2c !important;
}

/* ===== LOGIN PAGE RESPONSIVE ===== */
@media (max-width: 576px) {
    body.login-page {
        padding: 10px;
    }
    
    .login-card {
        margin: 10px;
        max-width: 100%;
    }
    
    .login-header {
        padding: 20px;
    }
    
    .login-body {
        padding: 20px;
    }
} 



.report-row td {
    background-color: transparent !important;
    background: transparent !important;
}

/* ===== MENU BADGE STYLES ===== */
.sidebar .nav-link .badge {
    position: absolute;
    top: 8px;
    right: 8px;
    font-size: 0.6em;
    min-width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: #ffc107 !important;
    color: #000 !important;
    font-weight: bold;
}

.sidebar .nav-link:hover .badge {
    background-color: #ffca2c !important;
}

/* ===== LOGIN PAGE RESPONSIVE ===== */
@media (max-width: 576px) {
    body.login-page {
        padding: 10px;
    }
    
    .login-card {
        margin: 10px;
        max-width: 100%;
    }
    
    .login-header {
        padding: 20px;
    }
    
    .login-body {
        padding: 20px;
    }
} 



.report-row td {
    background-color: transparent !important;
    background: transparent !important;
}

/* ===== MENU BADGE STYLES ===== */
.sidebar .nav-link .badge {
    position: absolute;
    top: 8px;
    right: 8px;
    font-size: 0.6em;
    min-width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: #ffc107 !important;
    color: #000 !important;
    font-weight: bold;
}

.sidebar .nav-link:hover .badge {
    background-color: #ffca2c !important;
}

/* ===== LOGIN PAGE RESPONSIVE ===== */
@media (max-width: 576px) {
    body.login-page {
        padding: 10px;
    }
    
    .login-card {
        margin: 10px;
        max-width: 100%;
    }
    
    .login-header {
        padding: 20px;
    }
    
    .login-body {
        padding: 20px;
    }
} 



.report-row td {
    background-color: transparent !important;
    background: transparent !important;
}

/* ===== MENU BADGE STYLES ===== */
.sidebar .nav-link .badge {
    position: absolute;
    top: 8px;
    right: 8px;
    font-size: 0.6em;
    min-width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: #ffc107 !important;
    color: #000 !important;
    font-weight: bold;
}

.sidebar .nav-link:hover .badge {
    background-color: #ffca2c !important;
}

/* ===== LOGIN PAGE RESPONSIVE ===== */
@media (max-width: 576px) {
    body.login-page {
        padding: 10px;
    }
    
    .login-card {
        margin: 10px;
        max-width: 100%;
    }
    
    .login-header {
        padding: 20px;
    }
    
    .login-body {
        padding: 20px;
    }
} 



.report-row td {
    background-color: transparent !important;
    background: transparent !important;
}

/* ===== MENU BADGE STYLES ===== */
.sidebar .nav-link .badge {
    position: absolute;
    top: 8px;
    right: 8px;
    font-size: 0.6em;
    min-width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: #ffc107 !important;
    color: #000 !important;
    font-weight: bold;
}

.sidebar .nav-link:hover .badge {
    background-color: #ffca2c !important;
}

/* ===== LOGIN PAGE RESPONSIVE ===== */
@media (max-width: 576px) {
    body.login-page {
        padding: 10px;
    }
    
    .login-card {
        margin: 10px;
        max-width: 100%;
    }
    
    .login-header {
        padding: 20px;
    }
    
    .login-body {
        padding: 20px;
    }
} 



.report-row td {
    background-color: transparent !important;
    background: transparent !important;
}

/* ===== MENU BADGE STYLES ===== */
.sidebar .nav-link .badge {
    position: absolute;
    top: 8px;
    right: 8px;
    font-size: 0.6em;
    min-width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: #ffc107 !important;
    color: #000 !important;
    font-weight: bold;
}

.sidebar .nav-link:hover .badge {
    background-color: #ffca2c !important;
}

/* ===== LOGIN PAGE RESPONSIVE ===== */
@media (max-width: 576px) {
    body.login-page {
        padding: 10px;
    }
    
    .login-card {
        margin: 10px;
        max-width: 100%;
    }
    
    .login-header {
        padding: 20px;
    }
    
    .login-body {
        padding: 20px;
    }
} 



.report-row td {
    background-color: transparent !important;
    background: transparent !important;
}

/* ===== MENU BADGE STYLES ===== */
.sidebar .nav-link .badge {
    position: absolute;
    top: 8px;
    right: 8px;
    font-size: 0.6em;
    min-width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: #ffc107 !important;
    color: #000 !important;
    font-weight: bold;
}

.sidebar .nav-link:hover .badge {
    background-color: #ffca2c !important;
}

/* ===== LOGIN PAGE RESPONSIVE ===== */
@media (max-width: 576px) {
    body.login-page {
        padding: 10px;
    }
    
    .login-card {
        margin: 10px;
        max-width: 100%;
    }
    
    .login-header {
        padding: 20px;
    }
    
    .login-body {
        padding: 20px;
    }
} 



.report-row td {
    background-color: transparent !important;
    background: transparent !important;
}

/* ===== MENU BADGE STYLES ===== */
.sidebar .nav-link .badge {
    position: absolute;
    top: 8px;
    right: 8px;
    font-size: 0.6em;
    min-width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: #ffc107 !important;
    color: #000 !important;
    font-weight: bold;
}

.sidebar .nav-link:hover .badge {
    background-color: #ffca2c !important;
}

/* ===== LOGIN PAGE RESPONSIVE ===== */
@media (max-width: 576px) {
    body.login-page {
        padding: 10px;
    }
    
    .login-card {
        margin: 10px;
        max-width: 100%;
    }
    
    .login-header {
        padding: 20px;
    }
    
    .login-body {
        padding: 20px;
    }
} 



.report-row td {
    background-color: transparent !important;
    background: transparent !important;
}

/* ===== MENU BADGE STYLES ===== */
.sidebar .nav-link .badge {
    position: absolute;
    top: 8px;
    right: 8px;
    font-size: 0.6em;
    min-width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: #ffc107 !important;
    color: #000 !important;
    font-weight: bold;
}

.sidebar .nav-link:hover .badge {
    background-color: #ffca2c !important;
}

/* ===== LOGIN PAGE RESPONSIVE ===== */
@media (max-width: 576px) {
    body.login-page {
        padding: 10px;
    }
    
    .login-card {
        margin: 10px;
        max-width: 100%;
    }
    
    .login-header {
        padding: 20px;
    }
    
    .login-body {
        padding: 20px;
    }
} 



.report-row td {
    background-color: transparent !important;
    background: transparent !important;
}

/* ===== MENU BADGE STYLES ===== */
.sidebar .nav-link .badge {
    position: absolute;
    top: 8px;
    right: 8px;
    font-size: 0.6em;
    min-width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: #ffc107 !important;
    color: #000 !important;
    font-weight: bold;
}

.sidebar .nav-link:hover .badge {
    background-color: #ffca2c !important;
}

/* ===== LOGIN PAGE RESPONSIVE ===== */
@media (max-width: 576px) {
    body.login-page {
        padding: 10px;
    }
    
    .login-card {
        margin: 10px;
        max-width: 100%;
    }
    
    .login-header {
        padding: 20px;
    }
    
    .login-body {
        padding: 20px;
    }
} 



.report-row td {
    background-color: transparent !important;
    background: transparent !important;
}

/* ===== MENU BADGE STYLES ===== */
.sidebar .nav-link .badge {
    position: absolute;
    top: 8px;
    right: 8px;
    font-size: 0.6em;
    min-width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: #ffc107 !important;
    color: #000 !important;
    font-weight: bold;
}

.sidebar .nav-link:hover .badge {
    background-color: #ffca2c !important;
}

/* ===== LOGIN PAGE RESPONSIVE ===== */
@media (max-width: 576px) {
    body.login-page {
        padding: 10px;
    }
    
    .login-card {
        margin: 10px;
        max-width: 100%;
    }
    
    .login-header {
        padding: 20px;
    }
    
    .login-body {
        padding: 20px;
    }
} 



.report-row td {
    background-color: transparent !important;
    background: transparent !important;
}

/* ===== MENU BADGE STYLES ===== */
.sidebar .nav-link .badge {
    position: absolute;
    top: 8px;
    right: 8px;
    font-size: 0.6em;
    min-width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: #ffc107 !important;
    color: #000 !important;
    font-weight: bold;
}

.sidebar .nav-link:hover .badge {
    background-color: #ffca2c !important;
}

/* ===== LOGIN PAGE RESPONSIVE ===== */
@media (max-width: 576px) {
    body.login-page {
        padding: 10px;
    }
    
    .login-card {
        margin: 10px;
        max-width: 100%;
    }
    
    .login-header {
        padding: 20px;
    }
    
    .login-body {
        padding: 20px;
    }
} 



.report-row td {
    background-color: transparent !important;
    background: transparent !important;
}

/* ===== MENU BADGE STYLES ===== */
.sidebar .nav-link .badge {
    position: absolute;
    top: 8px;
    right: 8px;
    font-size: 0.6em;
    min-width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: #ffc107 !important;
    color: #000 !important;
    font-weight: bold;
}

.sidebar .nav-link:hover .badge {
    background-color: #ffca2c !important;
}

/* ===== LOGIN PAGE RESPONSIVE ===== */
@media (max-width: 576px) {
    body.login-page {
        padding: 10px;
    }
    
    .login-card {
        margin: 10px;
        max-width: 100%;
    }
    
    .login-header {
        padding: 20px;
    }
    
    .login-body {
        padding: 20px;
    }
} 



.report-row td {
    background-color: transparent !important;
    background: transparent !important;
}

/* ===== MENU BADGE STYLES ===== */
.sidebar .nav-link .badge {
    position: absolute;
    top: 8px;
    right: 8px;
    font-size: 0.6em;
    min-width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: #ffc107 !important;
    color: #000 !important;
    font-weight: bold;
}

.sidebar .nav-link:hover .badge {
    background-color: #ffca2c !important;
}

/* ===== LOGIN PAGE RESPONSIVE ===== */
@media (max-width: 576px) {
    body.login-page {
        padding: 10px;
    }
    
    .login-card {
        margin: 10px;
        max-width: 100%;
    }
    
    .login-header {
        padding: 20px;
    }
    
    .login-body {
        padding: 20px;
    }
} 



.report-row td {
    background-color: transparent !important;
    background: transparent !important;
}

/* ===== MENU BADGE STYLES ===== */
.sidebar .nav-link .badge {
    position: absolute;
    top: 8px;
    right: 8px;
    font-size: 0.6em;
    min-width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: #ffc107 !important;
    color: #000 !important;
    font-weight: bold;
}

.sidebar .nav-link:hover .badge {
    background-color: #ffca2c !important;
}

/* ===== LOGIN PAGE RESPONSIVE ===== */
@media (max-width: 576px) {
    body.login-page {
        padding: 10px;
    }
    
    .login-card {
        margin: 10px;
        max-width: 100%;
    }
    
    .login-header {
        padding: 20px;
    }
    
    .login-body {
        padding: 20px;
    }
} 



.report-row td {
    background-color: transparent !important;
    background: transparent !important;
}

/* ===== MENU BADGE STYLES ===== */
.sidebar .nav-link .badge {
    position: absolute;
    top: 8px;
    right: 8px;
    font-size: 0.6em;
    min-width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: #ffc107 !important;
    color: #000 !important;
    font-weight: bold;
}

.sidebar .nav-link:hover .badge {
    background-color: #ffca2c !important;
}

/* ===== LOGIN PAGE RESPONSIVE ===== */
@media (max-width: 576px) {
    body.login-page {
        padding: 10px;
    }
    
    .login-card {
        margin: 10px;
        max-width: 100%;
    }
    
    .login-header {
        padding: 20px;
    }
    
    .login-body {
        padding: 20px;
    }
} 



.report-row td {
    background-color: transparent !important;
    background: transparent !important;
}

/* ===== MENU BADGE STYLES ===== */
.sidebar .nav-link .badge {
    position: absolute;
    top: 8px;
    right: 8px;
    font-size: 0.6em;
    min-width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: #ffc107 !important;
    color: #000 !important;
    font-weight: bold;
}

.sidebar .nav-link:hover .badge {
    background-color: #ffca2c !important;
}

/* ===== LOGIN PAGE RESPONSIVE ===== */
@media (max-width: 576px) {
    body.login-page {
        padding: 10px;
    }
    
    .login-card {
        margin: 10px;
        max-width: 100%;
    }
    
    .login-header {
        padding: 20px;
    }
    
    .login-body {
        padding: 20px;
    }
} 



.report-row td {
    background-color: transparent !important;
    background: transparent !important;
}

/* ===== MENU BADGE STYLES ===== */
.sidebar .nav-link .badge {
    position: absolute;
    top: 8px;
    right: 8px;
    font-size: 0.6em;
    min-width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: #ffc107 !important;
    color: #000 !important;
    font-weight: bold;
}

.sidebar .nav-link:hover .badge {
    background-color: #ffca2c !important;
}

/* ===== LOGIN PAGE RESPONSIVE ===== */
@media (max-width: 576px) {
    body.login-page {
        padding: 10px;
    }
    
    .login-card {
        margin: 10px;
        max-width: 100%;
    }
    
    .login-header {
        padding: 20px;
    }
    
    .login-body {
        padding: 20px;
    }
} 



.report-row td {
    background-color: transparent !important;
    background: transparent !important;
}

/* ===== MENU BADGE STYLES ===== */
.sidebar .nav-link .badge {
    position: absolute;
    top: 8px;
    right: 8px;
    font-size: 0.6em;
    min-width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: #ffc107 !important;
    color: #000 !important;
    font-weight: bold;
}

.sidebar .nav-link:hover .badge {
    background-color: #ffca2c !important;
}

/* ===== LOGIN PAGE RESPONSIVE ===== */
@media (max-width: 576px) {
    body.login-page {
        padding: 10px;
    }
    
    .login-card {
        margin: 10px;
        max-width: 100%;
    }
    
    .login-header {
        padding: 20px;
    }
    
    .login-body {
        padding: 20px;
    }
} 



.report-row td {
    background-color: transparent !important;
    background: transparent !important;
}

/* ===== MENU BADGE STYLES ===== */
.sidebar .nav-link .badge {
    position: absolute;
    top: 8px;
    right: 8px;
    font-size: 0.6em;
    min-width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: #ffc107 !important;
    color: #000 !important;
    font-weight: bold;
}

.sidebar .nav-link:hover .badge {
    background-color: #ffca2c !important;
}

/* ===== LOGIN PAGE RESPONSIVE ===== */
@media (max-width: 576px) {
    body.login-page {
        padding: 10px;
    }
    
    .login-card {
        margin: 10px;
        max-width: 100%;
    }
    
    .login-header {
        padding: 20px;
    }
    
    .login-body {
        padding: 20px;
    }
} 



.report-row td {
    background-color: transparent !important;
    background: transparent !important;
}

/* ===== MENU BADGE STYLES ===== */
.sidebar .nav-link .badge {
    position: absolute;
    top: 8px;
    right: 8px;
    font-size: 0.6em;
    min-width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: #ffc107 !important;
    color: #000 !important;
    font-weight: bold;
}

.sidebar .nav-link:hover .badge {
    background-color: #ffca2c !important;
}

/* ===== LOGIN PAGE RESPONSIVE ===== */
@media (max-width: 576px) {
    body.login-page {
        padding: 10px;
    }
    
    .login-card {
        margin: 10px;
        max-width: 100%;
    }
    
    .login-header {
        padding: 20px;
    }
    
    .login-body {
        padding: 20px;
    }
} 



.report-row td {
    background-color: transparent !important;
    background: transparent !important;
}

/* ===== MENU BADGE STYLES ===== */
.sidebar .nav-link .badge {
    position: absolute;
    top: 8px;
    right: 8px;
    font-size: 0.6em;
    min-width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: #ffc107 !important;
    color: #000 !important;
    font-weight: bold;
}

.sidebar .nav-link:hover .badge {
    background-color: #ffca2c !important;
}

/* ===== LOGIN PAGE RESPONSIVE ===== */
@media (max-width: 576px) {
    body.login-page {
        padding: 10px;
    }
    
    .login-card {
        margin: 10px;
        max-width: 100%;
    }
    
    .login-header {
        padding: 20px;
    }
    
    .login-body {
        padding: 20px;
    }
} 



.report-row td {
    background-color: transparent !important;
    background: transparent !important;
}

/* ===== MENU BADGE STYLES ===== */
.sidebar .nav-link .badge {
    position: absolute;
    top: 8px;
    right: 8px;
    font-size: 0.6em;
    min-width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: #ffc107 !important;
    color: #000 !important;
    font-weight: bold;
}

.sidebar .nav-link:hover .badge {
    background-color: #ffca2c !important;
}

/* ===== LOGIN PAGE RESPONSIVE ===== */
@media (max-width: 576px) {
    body.login-page {
        padding: 10px;
    }
    
    .login-card {
        margin: 10px;
        max-width: 100%;
    }
    
    .login-header {
        padding: 20px;
    }
    
    .login-body {
        padding: 20px;
    }
} 



.report-row td {
    background-color: transparent !important;
    background: transparent !important;
}

/* ===== MENU BADGE STYLES ===== */
.sidebar .nav-link .badge {
    position: absolute;
    top: 8px;
    right: 8px;
    font-size: 0.6em;
    min-width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: #ffc107 !important;
    color: #000 !important;
    font-weight: bold;
}

.sidebar .nav-link:hover .badge {
    background-color: #ffca2c !important;
}

/* ===== LOGIN PAGE RESPONSIVE ===== */
@media (max-width: 576px) {
    body.login-page {
        padding: 10px;
    }
    
    .login-card {
        margin: 10px;
        max-width: 100%;
    }
    
    .login-header {
        padding: 20px;
    }
    
    .login-body {
        padding: 20px;
    }
} 



.report-row td {
    background-color: transparent !important;
    background: transparent !important;
}

/* ===== MENU BADGE STYLES ===== */
.sidebar .nav-link .badge {
    position: absolute;
    top: 8px;
    right: 8px;
    font-size: 0.6em;
    min-width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: #ffc107 !important;
    color: #000 !important;
    font-weight: bold;
}

.sidebar .nav-link:hover .badge {
    background-color: #ffca2c !important;
}

/* ===== LOGIN PAGE RESPONSIVE ===== */
@media (max-width: 576px) {
    body.login-page {
        padding: 10px;
    }
    
    .login-card {
        margin: 10px;
        max-width: 100%;
    }
    
    .login-header {
        padding: 20px;
    }
    
    .login-body {
        padding: 20px;
    }
} 



.report-row td {
    background-color: transparent !important;
    background: transparent !important;
}

/* ===== MENU BADGE STYLES ===== */
.sidebar .nav-link .badge {
    position: absolute;
    top: 8px;
    right: 8px;
    font-size: 0.6em;
    min-width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: #ffc107 !important;
    color: #000 !important;
    font-weight: bold;
}

.sidebar .nav-link:hover .badge {
    background-color: #ffca2c !important;
}

/* ===== LOGIN PAGE RESPONSIVE ===== */
@media (max-width: 576px) {
    body.login-page {
        padding: 10px;
    }
    
    .login-card {
        margin: 10px;
        max-width: 100%;
    }
    
    .login-header {
        padding: 20px;
    }
    
    .login-body {
        padding: 20px;
    }
} 



.report-row td {
    background-color: transparent !important;
    background: transparent !important;
}

/* ===== MENU BADGE STYLES ===== */
.sidebar .nav-link .badge {
    position: absolute;
    top: 8px;
    right: 8px;
    font-size: 0.6em;
    min-width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: #ffc107 !important;
    color: #000 !important;
    font-weight: bold;
}

.sidebar .nav-link:hover .badge {
    background-color: #ffca2c !important;
}

/* ===== LOGIN PAGE RESPONSIVE ===== */
@media (max-width: 576px) {
    body.login-page {
        padding: 10px;
    }
    
    .login-card {
        margin: 10px;
        max-width: 100%;
    }
    
    .login-header {
        padding: 20px;
    }
    
    .login-body {
        padding: 20px;
    }
} 



.report-row td {
    background-color: transparent !important;
    background: transparent !important;
}

/* ===== MENU BADGE STYLES ===== */
.sidebar .nav-link .badge {
    position: absolute;
    top: 8px;
    right: 8px;
    font-size: 0.6em;
    min-width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: #ffc107 !important;
    color: #000 !important;
    font-weight: bold;
}

.sidebar .nav-link:hover .badge {
    background-color: #ffca2c !important;
}

/* ===== LOGIN PAGE RESPONSIVE ===== */
@media (max-width: 576px) {
    body.login-page {
        padding: 10px;
    }
    
    .login-card {
        margin: 10px;
        max-width: 100%;
    }
    
    .login-header {
        padding: 20px;
    }
    
    .login-body {
        padding: 20px;
    }
} 



.report-row td {
    background-color: transparent !important;
    background: transparent !important;
}

/* ===== MENU BADGE STYLES ===== */
.sidebar .nav-link .badge {
    position: absolute;
    top: 8px;
    right: 8px;
    font-size: 0.6em;
    min-width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: #ffc107 !important;
    color: #000 !important;
    font-weight: bold;
}

.sidebar .nav-link:hover .badge {
    background-color: #ffca2c !important;
}

/* ===== LOGIN PAGE RESPONSIVE ===== */
@media (max-width: 576px) {
    body.login-page {
        padding: 10px;
    }
    
    .login-card {
        margin: 10px;
        max-width: 100%;
    }
    
    .login-header {
        padding: 20px;
    }
    
    .login-body {
        padding: 20px;
    }
} 



.report-row td {
    background-color: transparent !important;
    background: transparent !important;
}

/* ===== MENU BADGE STYLES ===== */
.sidebar .nav-link .badge {
    position: absolute;
    top: 8px;
    right: 8px;
    font-size: 0.6em;
    min-width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: #ffc107 !important;
    color: #000 !important;
    font-weight: bold;
}

.sidebar .nav-link:hover .badge {
    background-color: #ffca2c !important;
}

/* ===== LOGIN PAGE RESPONSIVE ===== */
@media (max-width: 576px) {
    body.login-page {
        padding: 10px;
    }
    
    .login-card {
        margin: 10px;
        max-width: 100%;
    }
    
    .login-header {
        padding: 20px;
    }
    
    .login-body {
        padding: 20px;
    }
} 



.report-row td {
    background-color: transparent !important;
    background: transparent !important;
}

/* ===== MENU BADGE STYLES ===== */
.sidebar .nav-link .badge {
    position: absolute;
    top: 8px;
    right: 8px;
    font-size: 0.6em;
    min-width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: #ffc107 !important;
    color: #000 !important;
    font-weight: bold;
}

.sidebar .nav-link:hover .badge {
    background-color: #ffca2c !important;
}

/* ===== LOGIN PAGE RESPONSIVE ===== */
@media (max-width: 576px) {
    body.login-page {
        padding: 10px;
    }
    
    .login-card {
        margin: 10px;
        max-width: 100%;
    }
    
    .login-header {
        padding: 20px;
    }
    
    .login-body {
        padding: 20px;
    }
} 



.report-row td {
    background-color: transparent !important;
    background: transparent !important;
}

/* ===== MENU BADGE STYLES ===== */
.sidebar .nav-link .badge {
    position: absolute;
    top: 8px;
    right: 8px;
    font-size: 0.6em;
    min-width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: #ffc107 !important;
    color: #000 !important;
    font-weight: bold;
}

.sidebar .nav-link:hover .badge {
    background-color: #ffca2c !important;
}

/* ===== LOGIN PAGE RESPONSIVE ===== */
@media (max-width: 576px) {
    body.login-page {
        padding: 10px;
    }
    
    .login-card {
        margin: 10px;
        max-width: 100%;
    }
    
    .login-header {
        padding: 20px;
    }
    
    .login-body {
        padding: 20px;
    }
} 



.report-row td {
    background-color: transparent !important;
    background: transparent !important;
}

/* ===== MENU BADGE STYLES ===== */
.sidebar .nav-link .badge {
    position: absolute;
    top: 8px;
    right: 8px;
    font-size: 0.6em;
    min-width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: #ffc107 !important;
    color: #000 !important;
    font-weight: bold;
}

.sidebar .nav-link:hover .badge {
    background-color: #ffca2c !important;
}

/*