
        * { margin: 0; padding: 0; box-sizing: border-box; }
        
        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica Neue', Arial, sans-serif;
            background: #f3f2ef;
            color: rgba(0, 0, 0, 0.9);
            line-height: 1.6;
            min-height: 100vh;
        }
        
        .top-nav {
            background: white;
            border-bottom: 1px solid rgba(0, 0, 0, 0.08);
            padding: 12px 0;
            position: sticky;
            top: 0;
            z-index: 100;
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.04);
        }
        
        .nav-container {
            max-width: 1128px;
            margin: 0 auto;
            padding: 0 24px;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }
        
        .logo {
            font-size: 22px;
            font-weight: 700;
            color: #0a66c2;
            text-decoration: none;
        }
        
        .breadcrumb {
            display: flex;
            gap: 8px;
            align-items: center;
            font-size: 13px;
            color: rgba(0, 0, 0, 0.6);
        }
        
        .breadcrumb a {
            color: rgba(0, 0, 0, 0.6);
            text-decoration: none;
            transition: color 0.2s;
        }
        
        .breadcrumb a:hover { color: #0a66c2; }
        
        .container {
            max-width: 1128px;
            margin: 24px auto;
            padding: 0 24px;
        }
        
        .card {
            background: white;
            border-radius: 8px;
            box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.08), 0 2px 4px rgba(0, 0, 0, 0.04);
            margin-bottom: 24px;
            overflow: hidden;
        }
        
        .hero {
            padding: 40px 32px;
            color: white;
            background: linear-gradient(135deg, #d32f2f 0%, #b71c1c 100%);
        }
        
        .hero.safe { background: linear-gradient(135deg, #4caf50 0%, #388e3c 100%); }
        .hero.warning { background: linear-gradient(135deg, #ff9800 0%, #f57c00 100%); }
        .hero.neutral { background: linear-gradient(135deg, #757575 0%, #616161 100%); }
        
        .status-badge {
            display: inline-block;
            background: rgba(255, 255, 255, 0.25);
            padding: 8px 20px;
            border-radius: 24px;
            font-size: 14px;
            font-weight: 600;
            margin-bottom: 16px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }
        
        h1 {
            font-size: 42px;
            font-weight: 700;
            margin-bottom: 12px;
            line-height: 1.2;
        }
        
        .hero-info {
            font-size: 16px;
            opacity: 0.95;
            margin-bottom: 8px;
        }
        
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 32px;
            margin-top: 32px;
            text-align: center;
        }
        
        .stat-item {
            display: flex;
            flex-direction: column;
        }
        
        .stat-value {
            font-size: 36px;
            font-weight: 700;
            line-height: 1;
        }
        
        .stat-label {
            font-size: 13px;
            opacity: 0.85;
            text-transform: uppercase;
            margin-top: 8px;
            letter-spacing: 0.5px;
        }
        
        .section-header {
            padding: 24px 32px;
            border-bottom: 1px solid rgba(0, 0, 0, 0.08);
        }
        
        .section-header h2 {
            font-size: 20px;
            font-weight: 600;
            color: rgba(0, 0, 0, 0.9);
        }
        
        .section-body {
            padding: 32px;
        }
        
        .rating-display {
            display: flex;
            align-items: center;
            gap: 32px;
            margin-bottom: 24px;
        }
        
        .rating-score {
            font-size: 64px;
            font-weight: 700;
            color: #0a66c2;
            line-height: 1;
        }
        
        .stars {
            font-size: 28px;
            color: #ffa000;
            letter-spacing: 2px;
        }
        
        .rating-meta {
            font-size: 14px;
            color: rgba(0, 0, 0, 0.6);
            margin-top: 4px;
        }
        
        .alert-warning {
            background: #fff3cd;
            border: 2px solid #ffc107;
            border-radius: 8px;
            padding: 20px 24px;
            margin-bottom: 24px;
            display: flex;
            gap: 16px;
            align-items: flex-start;
        }
        
        .alert-icon {
            font-size: 28px;
            line-height: 1;
        }
        
        .alert-content strong {
            display: block;
            font-weight: 600;
            margin-bottom: 6px;
            font-size: 15px;
        }
        
        .alert-content {
            font-size: 14px;
            color: rgba(0, 0, 0, 0.8);
        }
        
        .alert-success {
            background: #d4edda;
            border: 2px solid #28a745;
            border-radius: 8px;
            padding: 16px 24px;
            margin-bottom: 24px;
            color: #155724;
        }
        
        .alert-error {
            background: #f8d7da;
            border: 2px solid #dc3545;
            border-radius: 8px;
            padding: 16px 24px;
            margin-bottom: 24px;
            color: #721c24;
        }
        
        .rating-bars {
            margin-top: 24px;
        }
        
        .rating-bar-item {
            display: flex;
            align-items: center;
            gap: 16px;
            margin-bottom: 12px;
        }
        
        .rating-label {
            font-size: 14px;
            min-width: 100px;
            font-weight: 500;
        }
        
        .rating-bar-bg {
            flex: 1;
            height: 10px;
            background: #e0e0e0;
            border-radius: 5px;
            overflow: hidden;
        }
        
        .rating-bar-fill {
            height: 100%;
            border-radius: 5px;
            transition: width 0.3s ease;
        }
        
        .rating-bar-fill.danger { background: #d32f2f; }
        .rating-bar-fill.warning { background: #ff9800; }
        .rating-bar-fill.neutral { background: #9e9e9e; }
        .rating-bar-fill.safe { background: #4caf50; }
        
        .rating-count {
            font-size: 14px;
            min-width: 50px;
            text-align: right;
            font-weight: 600;
        }
        
   /* ============================================
   MONTHLY CHART - CLEAN & ALIGNED
   ============================================ */

.chart-container {
    margin: 24px 0;
    position: relative;
}

/* Chart bars container */
.chart-bars {
    display: flex;
    align-items: flex-end;
    gap: 6px;
    height: 200px;
    margin-bottom: 12px;
    padding: 0 4px;
}

/* Individual bar wrapper */
.chart-bar-wrapper {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    height: 100%;
    position: relative;
    min-width: 0; /* Prevent overflow */
}

/* Base bar styles */
.chart-bar {
    width: 100%;
    background: #0a66c2;
    border-radius: 4px 4px 0 0;
    transition: all 0.2s ease;
    position: relative;
    cursor: pointer;
    min-height: 2px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

/* Past months - blue */
.chart-bar.past {
    background: linear-gradient(180deg, #0a66c2 0%, #004182 100%);
    opacity: 0.9;
}

/* Current month - orange with glow */
.chart-bar.current {
    background: linear-gradient(180deg, #ff9800 0%, #f57c00 100%);
    box-shadow: 0 0 12px rgba(255, 152, 0, 0.4),
                0 2px 6px rgba(255, 152, 0, 0.3);
    animation: pulse 2s ease-in-out infinite;
}

/* Future month - gray with dashed border */
.chart-bar.future {
    background: repeating-linear-gradient(
        135deg,
        #f5f5f5,
        #f5f5f5 4px,
        #e0e0e0 4px,
        #e0e0e0 8px
    );
    border: 2px dashed rgba(0, 0, 0, 0.15);
    opacity: 0.6;
    cursor: default;
}

/* Hover effects */
.chart-bar.past:hover,
.chart-bar.current:hover {
    opacity: 0.85;
    transform: translateY(-4px);
    box-shadow: 0 4px 12px rgba(10, 102, 194, 0.3);
}

.chart-bar.current:hover {
    box-shadow: 0 0 16px rgba(255, 152, 0, 0.5),
                0 4px 12px rgba(255, 152, 0, 0.4);
}

.chart-bar.future:hover {
    opacity: 0.7;
    transform: none;
}

/* Value label above bar */
.chart-value {
    position: absolute;
    top: -24px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 11px;
    font-weight: 600;
    color: rgba(0, 0, 0, 0.75);
    white-space: nowrap;
    background: white;
    padding: 2px 6px;
    border-radius: 4px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    pointer-events: none;
    z-index: 10;
}

.chart-bar.current .chart-value {
    color: #ff9800;
    font-weight: 700;
}

.chart-bar.future .chart-value {
    color: rgba(0, 0, 0, 0.3);
    background: transparent;
    box-shadow: none;
}

/* ✅ FIXED: Month label - clean and aligned */
.chart-label {
    margin-top: 8px;
    font-size: 10px;
    color: rgba(0, 0, 0, 0.6);
    text-align: center;
    font-weight: 500;
    line-height: 1.2;
    width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* ✅ Remove color variations - all labels same color */
.chart-label {
    color: rgba(0, 0, 0, 0.6) !important;
    font-weight: 500 !important;
}

/* Pulse animation for current month */
@keyframes pulse {
    0%, 100% {
        box-shadow: 0 0 12px rgba(255, 152, 0, 0.4),
                    0 2px 6px rgba(255, 152, 0, 0.3);
    }
    50% {
        box-shadow: 0 0 20px rgba(255, 152, 0, 0.6),
                    0 4px 10px rgba(255, 152, 0, 0.4);
    }
}

/* Legend styles */
.chart-legend {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 24px;
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    font-size: 12px;
    color: rgba(0, 0, 0, 0.6);
}

.chart-legend-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.chart-legend-color {
    display: inline-block;
    width: 14px;
    height: 14px;
    border-radius: 3px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    flex-shrink: 0;
}

.chart-legend-color.past {
    background: linear-gradient(135deg, #0a66c2 0%, #004182 100%);
}

.chart-legend-color.current {
    background: linear-gradient(135deg, #ff9800 0%, #f57c00 100%);
}

.chart-legend-color.future {
    background: #e0e0e0;
    border: 2px dashed rgba(0, 0, 0, 0.15);
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .chart-bars {
        gap: 5px;
        height: 180px;
    }
    
    .chart-value {
        font-size: 10px;
        top: -20px;
        padding: 1px 4px;
    }
    
    .chart-label {
        font-size: 9px;
    }
}

@media (max-width: 768px) {
    .chart-bars {
        gap: 4px;
        height: 150px;
    }
    
    .chart-value {
        font-size: 9px;
        top: -18px;
        padding: 1px 3px;
    }
    
    .chart-label {
        font-size: 8px;
    }
    
    .chart-legend {
        gap: 16px;
        font-size: 11px;
        flex-wrap: wrap;
    }
    
    .chart-legend-color {
        width: 12px;
        height: 12px;
    }
}

@media (max-width: 576px) {
    .chart-container {
        margin: 16px -8px;
    }
    
    .chart-bars {
        gap: 2px;
        height: 120px;
        padding: 0 2px;
    }
    
    .chart-value {
        display: none;
    }
    
    .chart-label {
        font-size: 7px;
        margin-top: 4px;
    }
    
    .chart-bar:hover {
        transform: none;
    }
    
    .chart-legend {
        font-size: 10px;
        gap: 12px;
    }
}

/* Accessibility */
.chart-bar:focus-visible {
    outline: 2px solid #0a66c2;
    outline-offset: 2px;
}

.chart-bar.current:focus-visible {
    outline-color: #ff9800;
}

/* Print styles */
@media print {
    .chart-bars {
        break-inside: avoid;
    }
    
    .chart-bar.current {
        animation: none;
        box-shadow: none;
        border: 2px solid #ff9800;
    }
    
    .chart-bar.future {
        background: white;
        border: 2px dashed #ccc;
    }
}
        
        .formats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 16px;
        }
        
        .format-item {
            padding: 16px 20px;
            background: #f8f9fa;
            border: 1px solid rgba(0, 0, 0, 0.08);
            border-radius: 8px;
        }
        
        .format-label {
            font-size: 12px;
            color: rgba(0, 0, 0, 0.5);
            margin-bottom: 6px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }
        
        .format-value {
            font-size: 16px;
            font-family: 'Courier New', monospace;
            font-weight: 600;
            color: rgba(0, 0, 0, 0.9);
        }
        
        .review-card {
            border: 1px solid rgba(0, 0, 0, 0.08);
            border-radius: 8px;
            padding: 24px;
            margin-bottom: 16px;
            background: #fafafa;
        }
        
        .review-header {
            display: flex;
            align-items: center;
            gap: 16px;
            margin-bottom: 16px;
        }
        
        .review-avatar {
            width: 48px;
            height: 48px;
            border-radius: 50%;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            font-size: 18px;
            flex-shrink: 0;
        }
        
        .review-author-info { flex: 1; }
        
        .review-author {
            font-weight: 600;
            font-size: 15px;
            color: rgba(0, 0, 0, 0.9);
        }
        
        .review-date {
            font-size: 13px;
            color: rgba(0, 0, 0, 0.5);
            margin-top: 2px;
        }
        
        .review-rating {
            display: flex;
            align-items: center;
            gap: 8px;
        }
        
        .review-rating-emoji { font-size: 24px; }
        .review-rating-stars { color: #ffa000; font-size: 14px; }
        
        .review-category { margin-bottom: 12px; }
        
        .category-badge {
            display: inline-block;
            background: #e3f2fd;
            color: #1976d2;
            padding: 4px 12px;
            border-radius: 12px;
            font-size: 12px;
            font-weight: 600;
        }
        
        .review-body {
            font-size: 15px;
            line-height: 1.6;
            color: rgba(0, 0, 0, 0.8);
            margin-bottom: 16px;
        }
        
        .review-footer {
            display: flex;
            align-items: center;
            gap: 8px;
            flex-wrap: wrap;
        }
        
        .vote-btn {
            background: white;
            border: 1px solid rgba(0, 0, 0, 0.15);
            padding: 8px 12px;
            border-radius: 20px;
            font-size: 12px;
            cursor: pointer;
            transition: all 0.2s;
            font-weight: 500;
        }
        
        .vote-btn:hover {
            background: #f5f5f5;
            border-color: #0a66c2;
        }
        
        .review-status {
            margin-left: auto;
            padding: 6px 14px;
            border-radius: 12px;
            font-size: 12px;
            font-weight: 600;
            text-transform: uppercase;
        }
        
        .review-status.danger { background: #ffebee; color: #c62828; }
        .review-status.warning { background: #fff3e0; color: #e65100; }
        .review-status.neutral { background: #f5f5f5; color: #616161; }
        .review-status.safe { background: #e8f5e9; color: #2e7d32; }
        
        /* ===== REPLIES STYLING ===== */
        .replies-container {
            background: #f8f9fa;
            padding: 12px 16px;
            border-radius: 6px;
            margin-top: 16px;
            border-left: 4px solid #0a66c2;
        }
        
        .replies-header {
            font-size: 13px;
            font-weight: 600;
            margin-bottom: 12px;
        }
        
        .reply-card {
            background: white;
            padding: 12px;
            border-radius: 4px;
            margin-bottom: 8px;
            border-left: 3px solid #e0e0e0;
        }
        
        .reply-card:last-child {
            margin-bottom: 0;
        }
        
        .reply-header-mini {
            display: flex;
            gap: 10px;
            margin-bottom: 8px;
            align-items: center;
        }
        
        .reply-avatar-mini {
            width: 32px;
            height: 32px;
            border-radius: 50%;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 600;
            font-size: 11px;
            flex-shrink: 0;
        }
        
        .reply-info-mini {
            flex: 1;
            min-width: 0;
        }
        
        .reply-author-mini {
            font-weight: 600;
            font-size: 12px;
            color: rgba(0, 0, 0, 0.9);
        }
        
        .reply-date-mini {
            font-size: 11px;
            color: rgba(0, 0, 0, 0.5);
            margin-top: 2px;
        }
        
        .reply-body-mini {
            font-size: 13px;
            line-height: 1.5;
            color: rgba(0, 0, 0, 0.8);
            margin-bottom: 8px;
            padding-left: 42px;
        }
        
        .reply-footer-mini {
            padding-left: 42px;
            display: flex;
            gap: 8px;
            flex-wrap: wrap;
        }
        
        .reply-action-btn {
            background: none;
            border: none;
            color: #0a66c2;
            cursor: pointer;
            font-size: 11px;
            padding: 0;
            transition: color 0.2s;
        }
        
        .reply-action-btn:hover {
            color: #004182;
        }
        
        .admin-badge {
            background: #d32f2f;
            color: white;
            padding: 2px 8px;
            border-radius: 3px;
            font-size: 10px;
            font-weight: 600;
            margin-left: auto;
        }
        
        .btn-load-more {
            background: white;
            border: 2px solid #0a66c2;
            color: #0a66c2;
            padding: 14px 32px;
            border-radius: 24px;
            font-size: 15px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.2s;
        }
        
        .btn-load-more:hover {
            background: #0a66c2;
            color: white;
        }
        
        .review-form { max-width: 700px; }
        .form-group { margin-bottom: 24px; }
        
        .form-label {
            display: block;
            font-weight: 600;
            margin-bottom: 10px;
            font-size: 14px;
            color: rgba(0, 0, 0, 0.9);
        }
        
        .rating-buttons {
            display: flex;
            gap: 12px;
            flex-wrap: wrap;
        }
        
        .rating-buttons input[type="radio"] { display: none; }
        
        .rating-btn {
            flex: 1;
            min-width: 100px;
            padding: 16px 12px;
            border: 2px solid rgba(0, 0, 0, 0.1);
            border-radius: 8px;
            text-align: center;
            cursor: pointer;
            transition: all 0.2s;
            background: white;
        }
        
        .rating-btn:hover {
            border-color: #0a66c2;
            transform: translateY(-2px);
        }
        
        .rating-buttons input[type="radio"]:checked + .rating-btn {
            border-color: #0a66c2;
            background: #e3f2fd;
            box-shadow: 0 4px 12px rgba(10, 102, 194, 0.2);
        }
        
        .rating-emoji {
            display: block;
            font-size: 32px;
            margin-bottom: 8px;
        }
        
        .rating-text {
            display: block;
            font-size: 13px;
            font-weight: 600;
            color: rgba(0, 0, 0, 0.7);
        }
        
        .form-input, .form-textarea {
            width: 100%;
            padding: 12px 16px;
            border: 1px solid rgba(0, 0, 0, 0.15);
            border-radius: 6px;
            font-size: 14px;
            font-family: inherit;
            transition: border-color 0.2s;
        }
        
        .form-input:focus, .form-textarea:focus {
            outline: none;
            border-color: #0a66c2;
        }
        
        .form-textarea {
            resize: vertical;
            line-height: 1.6;
        }
        
        .form-hint {
            font-size: 12px;
            color: rgba(0, 0, 0, 0.5);
            margin-top: 6px;
        }
        
        .btn-submit {
            background: #0a66c2;
            color: white;
            border: none;
            padding: 14px 32px;
            border-radius: 24px;
            font-size: 15px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.2s;
        }
        
        .btn-submit:hover {
            background: #004182;
            transform: translateY(-1px);
            box-shadow: 0 4px 12px rgba(10, 102, 194, 0.3);
        }
        
        /* ===== BOOTSTRAP MODAL CUSTOMIZATION ===== */
        .modal-header {
            background: linear-gradient(135deg, #0a66c2 0%, #004182 100%);
            color: white;
        }
        
        .modal-header .btn-close {
            filter: brightness(0) invert(1);
        }
        
        .form-control:focus {
            border-color: #0a66c2;
            box-shadow: 0 0 0 0.2rem rgba(10, 102, 194, 0.25);
        }
        
        .btn-primary {
            background: #0a66c2;
            border-color: #0a66c2;
        }
        
        .btn-primary:hover {
            background: #004182;
            border-color: #004182;
        }
        
        .btn-danger {
            background: #d32f2f;
            border-color: #d32f2f;
        }
        
        .btn-danger:hover {
            background: #b71c1c;
            border-color: #b71c1c;
        }
        
        .captcha-box {
            background: #f8f9fa;
            padding: 16px;
            border-radius: 6px;
            margin: 16px 0;
            border-left: 4px solid #ffa000;
        }
        
        .captcha-question {
            font-weight: 600;
            margin-bottom: 8px;
            font-size: 18px;
        }
        
        .captcha-input {
            font-size: 18px;
            font-weight: 600;
            text-align: center;
            max-width: 150px;
        }
        
        .quick-report-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
            gap: 12px;
        }
        
        .quick-btn {
            padding: 14px 20px;
            border: none;
            border-radius: 8px;
            font-size: 14px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.2s;
            width: 100%;
        }
        
        .quick-btn-danger {
            background: #ffebee;
            color: #c62828;
            border: 2px solid #ef5350;
        }
        
        .quick-btn-warning {
            background: #fff3e0;
            color: #e65100;
            border: 2px solid #ff9800;
        }
        
        .quick-btn-safe {
            background: #e8f5e9;
            color: #2e7d32;
            border: 2px solid #4caf50;
        }
        
        .quick-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
        }
        
        .similar-numbers-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
            gap: 12px;
        }
        
        .similar-number-link {
            padding: 16px 20px;
            background: #f8f9fa;
            border: 1px solid rgba(0, 0, 0, 0.08);
            border-radius: 8px;
            text-decoration: none;
            color: #0a66c2;
            font-weight: 600;
            font-family: 'Courier New', monospace;
            text-align: center;
            transition: all 0.2s;
            display: block;
        }
        
        .similar-number-link:hover {
            background: #e3f2fd;
            border-color: #0a66c2;
            transform: translateY(-2px);
        }
        
        /* Footer link hover effects */
footer a:hover {
    color: #0a66c2 !important;
}

/* Related numbers button hover */
.btn-outline-secondary:hover {
    background: #0a66c2 !important;
    border-color: #0a66c2 !important;
    color: white !important;
}
        
        .footer-bottom p { margin: 4px 0; }
        
        @media (max-width: 768px) {
            h1 { font-size: 28px; }
            .stats-grid { grid-template-columns: 1fr; gap: 20px; }
            .rating-display { flex-direction: column; align-items: flex-start; }
            .breadcrumb { display: none; }
            .section-body { padding: 20px; }
            .rating-buttons { flex-direction: column; }
            .rating-btn { min-width: 100%; }
            .review-footer { flex-direction: column; align-items: flex-start; }
            .review-status { margin-left: 0; }
            .quick-report-grid { grid-template-columns: 1fr; }
        }
		
		.captcha-box {
			background: #f8f9fa;
			padding: 16px;
			border-radius: 6px;
			margin: 16px 0;
			border-left: 4px solid #ffa000;
			border: 2px solid #dc3545;
		}

		.captcha-question {
			font-weight: 600;
			margin-bottom: 12px;
			font-size: 16px;
			color: #dc3545;
		}

		.captcha-input {
			font-size: 18px;
			font-weight: 600;
			text-align: center;
			max-width: 150px;
			border: 2px solid #dc3545;
		}

		.btn-danger-light {
			background: #ffebee;
			color: #c62828;
			border: 1px solid #ef5350;
		}

		.btn-danger-light:hover {
			background: #ef5350;
			color: white;
		}
		
		/* ============================================
		   NAVBAR & AUTH STYLES
		   ============================================ */

		.navbar {
			box-shadow: 0 2px 4px rgba(0, 0, 0, 0.04) !important;
		}

		.navbar-brand {
			font-weight: 700 !important;
			color: #0a66c2 !important;
			font-size: 20px;
		}

		.navbar-brand:hover {
			color: #004182 !important;
		}

		.nav-link {
			color: rgba(0, 0, 0, 0.7) !important;
			font-weight: 500;
			transition: color 0.2s;
		}

		.nav-link:hover {
			color: #0a66c2 !important;
		}

		/* User Avatar */
		.user-avatar {
			width: 34px !important;
			height: 34px !important;
			border-radius: 50% !important;
			display: inline-flex !important;
			align-items: center !important;
			justify-content: center !important;
			background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
			color: white !important;
			font-weight: 600 !important;
			font-size: 0.9rem !important;
			text-transform: uppercase !important;
			line-height: 1 !important;
			flex: 0 0 34px !important;
		}

		.nav-username {
			max-width: 200px;
			white-space: nowrap;
			overflow: hidden;
			text-overflow: ellipsis;
		}

		.dropdown-menu {
			border: 1px solid rgba(0, 0, 0, 0.08);
			box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
			border-radius: 8px;
		}

		.dropdown-item {
			padding: 10px 20px;
			font-size: 14px;
			transition: background 0.2s;
		}

		.dropdown-item:hover {
			background: #f8f9fa;
		}

		.dropdown-header {
			padding: 8px 20px;
			font-size: 12px;
			color: rgba(0, 0, 0, 0.5);
			border-bottom: 1px solid rgba(0, 0, 0, 0.08);
		}

		.dropdown-divider {
			margin: 8px 0;
		}
		
		/* ============================================
   COMPACT QUICK REPORT STYLES
   ============================================ */

.quick-section {
    padding: 16px;
    background: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid #dee2e6;
}

.quick-section-header {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    color: rgba(0, 0, 0, 0.85);
}

.quick-section-header .badge {
    font-size: 16px;
    padding: 4px 8px;
}

.quick-section-header small {
    font-size: 12px;
    font-weight: 400;
}

/* Bootstrap button customization */
.quick-report-btn {
    font-size: 13px;
    font-weight: 500;
    padding: 6px 12px;
    border-width: 1.5px;
    transition: all 0.15s ease;
    white-space: nowrap;
}

.quick-report-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.quick-report-btn:active {
    transform: translateY(0);
}

/* Specific color variations */
.btn-outline-danger.quick-report-btn:hover {
    background-color: #dc3545;
    border-color: #dc3545;
    color: white;
}

.btn-outline-warning.quick-report-btn:hover {
    background-color: #ffc107;
    border-color: #ffc107;
    color: #000;
}

.btn-outline-secondary.quick-report-btn:hover {
    background-color: #6c757d;
    border-color: #6c757d;
    color: white;
}

.btn-outline-success.quick-report-btn:hover {
    background-color: #28a745;
    border-color: #28a745;
    color: white;
}

/* Border colors for sections */
.quick-section:nth-child(2) { border-left-color: #dc3545; }
.quick-section:nth-child(3) { border-left-color: #ffc107; }
.quick-section:nth-child(4) { border-left-color: #6c757d; }
.quick-section:nth-child(5) { border-left-color: #28a745; }

/* Modal improvements */
#loginRequiredModal .modal-content {
    border-radius: 16px;
    overflow: hidden;
}

@media (max-width: 768px) {
    .quick-report-btn {
        font-size: 11px;
        padding: 5px 10px;
    }
    
    .quick-section-header {
        font-size: 14px;
        flex-wrap: wrap;
    }
    
    .quick-section-header small {
        width: 100%;
        margin-top: 4px;
        margin-left: 0 !important;
    }
}