        /* Custom styles matching your public status page */
        .text-primary {
        color: #2e2e2e !important;
        }
        .component-card {
            background: white;
            border-radius: 10px;
            padding: 25px;
            margin-bottom: 25px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.08);
            border: 1px solid #e9ecef;
        }
        
        .beacon-container {
            display: flex;
            align-items: center;
            margin-bottom: 20px;
        }
        
        .beacon {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            margin-right: 20px;
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .beacon-inner {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            animation: pulse 2s infinite;
        }
        
        .beacon-healthy {
            background: rgba(40, 167, 69, 0.15);
        }
        
        .beacon-healthy .beacon-inner {
            background: #28a745;
            box-shadow: 0 0 20px rgba(40, 167, 69, 0.5);
        }
        
        .beacon-warning {
            background: rgba(255, 193, 7, 0.15);
        }
        
        .beacon-warning .beacon-inner {
            background: #ffc107;
            box-shadow: 0 0 20px rgba(255, 193, 7, 0.5);
        }
        
        .beacon-critical {
            background: rgba(220, 53, 69, 0.15);
        }
        
        .beacon-critical .beacon-inner {
            background: #dc3545;
            box-shadow: 0 0 20px rgba(220, 53, 69, 0.5);
        }
        
        .beacon-maintenance {
            background: rgba(108, 117, 125, 0.15);
        }
        
        .beacon-maintenance .beacon-inner {
            background: #6c757d;
            box-shadow: 0 0 20px rgba(108, 117, 125, 0.5);
        }
        
        .beacon-text {
            font-size: 28px;
            font-weight: 700;
            color: #2c3e50;
            margin-bottom: 5px;
        }
        
        .beacon-status-label {
            font-size: 16px;
            color: #6c757d;
        }
        
        @keyframes pulse {
            0% { transform: scale(0.95); opacity: 0.7; }
            50% { transform: scale(1); opacity: 1; }
            100% { transform: scale(0.95); opacity: 0.7; }
        }
        
        .status-indicator {
            display: inline-block;
            width: 12px;
            height: 12px;
            border-radius: 50%;
            margin-right: 10px;
        }
        
        .status-operational { background-color: #28a745; }
        .status-degraded { background-color: #ffc107; }
        .status-outage { background-color: #dc3545; }
        
        .time-filter-btn {
            border-radius: 4px;
            background: linear-gradient(155deg, #fafafa 100%, #2e2e2e 20%);
            padding: 8px 8px;
            border-color: #2e2e2e;
            color: #2e2e2e;
            margin: 0 5px;
            transition: all 0.3s ease;
        }
        
        .time-filter-btn:hover {
            border-radius: 4px;
            background: linear-gradient(155deg, #fafafa 100%, #2e2e2e 20%);
            padding: 8px 8px;
            border-color: #2e2e2e;
            color: #000000 !important;
            margin: 0 5px;
            transition: all 0.3s ease;
        }        
        
        .time-filter-btn.active {
            background: linear-gradient(155deg, red 55%, #eee 101%) !important;
            color: #fafafa !important;
            border-color: red;
            box-shadow: 0 4px 15px rgba(255, 204, 203, 0.3);
        }
        
        .time-filter-btn.active:hover {
            background: linear-gradient(155deg, red 55%, #eee 101%) !important;
            color: #2e2e2e !important;
            border-color: red;
            box-shadow: 0 4px 15px rgba(255, 204, 203, 0.3);
        }        
        
        .chart-container {
            position: relative;
            height: 300px;
            margin: 20px 0;
        }
        
        .uptime-badge {
            font-size: 0.9rem;
            padding: 4px 10px;
            border-radius: 20px;
        }
        
        .data-point-card {
            background: #f8f9fa;
            border-left: 4px solid #28a745;
            padding: 15px;
            margin-bottom: 10px;
            border-radius: 5px;
            transition: transform 0.2s ease;
        }
        
        .data-point-card:hover {
            transform: translateY(-2px);
            box-shadow: 0 4px 8px rgba(0,0,0,0.1);
        }
        
        .data-point-card.warning { border-left-color: #ffc107; }
        .data-point-card.critical { border-left-color: #dc3545; }
        .data-point-card.maintenance { border-left-color: #6c757d; }
        
        .stat-change {
            font-size: 0.8rem;
            padding: 3px 8px;
            border-radius: 12px;
        }
        
        .stat-increase { background: rgba(40, 167, 69, 0.15); color: #155724; }
        .stat-decrease { background: rgba(220, 53, 69, 0.15); color: #721c24; }
        .stat-neutral { background: rgba(108, 117, 125, 0.15); color: #383d41; }
        
        .summary-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 15px;
            margin: 20px 0;
        }
        
        .summary-item {
            background: white;
            padding: 15px;
            border-radius: 8px;
            text-align: center;
            box-shadow: 0 2px 5px rgba(0,0,0,0.05);
            border: 1px solid #e9ecef;
        }
        
        .summary-value {
            font-size: 2rem;
            font-weight: 700;
            color: #2c3e50;
            margin: 10px 0;
        }
        
        .summary-label {
            color: #6c757d;
            font-size: 0.9rem;
        }
        
        .blink {
            animation: blink 1.5s infinite;
        }
        
        @keyframes blink {
            0%, 100% { opacity: 1; }
            50% { opacity: 0.5; }
        }
        
        .refresh-indicator {
            color: #6c757d;
            font-size: 0.9rem;
        }
        
        .table-custom {
            background: white;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 2px 5px rgba(0,0,0,0.05);
        }
        
        .table-custom th {
            background: linear-gradient(155deg, red 55%, #eee 101%);
            color: white;
            border: none;
            padding: 15px;
        }
        
        .table-custom td {
            padding: 12px 15px;
            border-color: #e9ecef;
        }
        
        .table-custom tbody tr:hover {
            background-color: rgba(102, 126, 234, 0.05);
        }
        
        .load-spinner {
            display: none;
            text-align: center;
            padding: 40px;
        }
        
        .load-spinner.active {
            display: block;
        }
        
        .history-nav {
            margin-bottom: 30px;
        }
        
        .history-nav a {
            color: #2e2e2e;
            text-decoration: none;
            margin-right: 20px;
            padding: 8px 0;
            border-bottom: 2px solid transparent;
            transition: all 0.3s ease;
        }
        
        .history-nav a:hover {
            color: #000000;
        }
        
        .history-nav a.active {
            color: red;
            border-bottom-color: red;
            font-weight: 600;
        }
        
        .timeline-item {
            position: relative;
            padding-left: 30px;
            margin-bottom: 20px;
        }
        
        .timeline-dot {
            position: absolute;
            left: 0;
            top: 5px;
            width: 16px;
            height: 16px;
            border-radius: 50%;
            border: 3px solid #fff;
        }
        
        .timeline-dot.healthy { background-color: #28a745; }
        .timeline-dot.warning { background-color: #ffc107; }
        .timeline-dot.critical { background-color: #dc3545; }
        .timeline-dot.maintenance { background-color: #6c757d; }
        
        .timeline-content {
            background: #f8f9fa;
            padding: 15px;
            border-radius: 8px;
            border-left: 3px solid #28a745;
        }
        
        .timeline-content.warning { border-left-color: #ffc107; }
        .timeline-content.critical { border-left-color: #dc3545; }
        .timeline-content.maintenance { border-left-color: #6c757d; }
        
        .summary-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
        }
        
        @media (max-width: 992px) {
            .summary-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        
        @media (max-width: 576px) {
            .summary-grid {
                grid-template-columns: 1fr;
            }
        }
        
        .summary-item {
            background: white;
            border-radius: 10px;
            padding: 20px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.05);
            border: 1px solid rgba(0,0,0,0.1);
            text-align: center;
        }
        
        .summary-label {
            font-size: 0.9rem;
            color: #6c757d;
            margin-bottom: 8px;
            font-weight: 500;
        }
        
        .summary-value {
            font-size: 2rem;
            font-weight: 700;
            margin-bottom: 5px;
            line-height: 1.2;
        }
        
        .chart-container {
            position: relative;
            height: 300px;
        }
        
        .load-spinner {
            display: none;
            padding: 40px 0;
        }
        
        .load-spinner.active {
            display: block;
        }
        
        .timeline-item {
            display: flex;
            margin-bottom: 20px;
            position: relative;
        }
        
        .timeline-dot {
            width: 16px;
            height: 16px;
            border-radius: 50%;
            margin-right: 15px;
            margin-top: 5px;
            flex-shrink: 0;
        }
        
        .timeline-dot.healthy {
            background-color: #28a745;
            border: 3px solid rgba(40, 167, 69, 0.2);
        }
        
        .timeline-dot.warning {
            background-color: #ffc107;
            border: 3px solid rgba(255, 193, 7, 0.2);
        }
        
        .timeline-dot.critical {
            background-color: #dc3545;
            border: 3px solid rgba(220, 53, 69, 0.2);
        }
        
        .timeline-dot.maintenance {
            background-color: #6c757d;
            border: 3px solid rgba(108, 117, 125, 0.2);
        }
        
        .timeline-content {
            flex: 1;
            background: white;
            border-radius: 8px;
            padding: 15px;
            box-shadow: 0 2px 5px rgba(0,0,0,0.05);
            border-left: 4px solid #dee2e6;
        }
        
        .timeline-content.healthy {
            border-left-color: #28a745;
        }
        
        .timeline-content.warning {
            border-left-color: #ffc107;
        }
        
        .timeline-content.critical {
            border-left-color: #dc3545;
        }
        
        .timeline-content.maintenance {
            border-left-color: #6c757d;
        }
        
        .table-custom {
            background: white;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 2px 10px rgba(0,0,0,0.05);
        }
        
        .table-custom thead {
            background-color: #f8f9fa;
        }
        
        .component-card {
            background: white;
            border-radius: 10px;
            padding: 25px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.05);
            margin-bottom: 25px;
            border: 1px solid rgba(0,0,0,0.1);
        }
        
        .refresh-indicator {
            color: #6c757d;
            font-size: 0.9rem;
        }
        
        .timeline-filter-btn {
            border-radius: 4px        !important;
            background: linear-gradient(155deg, #fafafa 100%, #2e2e2e 20%);
            padding: 8px 8px          !important;
            border-color: red         !important;
            color: red                !important;
            margin: 0 5px             !important;
            transition: all 0.3s ease !important;
        }
        
        .timeline-filter-btn:hover {
            border-radius: 4px;
            background: linear-gradient(155deg, #fafafa 100%, #2e2e2e 20%);
            padding: 8px 8px;
            border-color: #2e2e2e;
            color: #000000 !important;
            margin: 0 5px;
            transition: all 0.3s ease;
        }         
        
        .timeline-filter-btn.active {
            background: linear-gradient(155deg, red 55%, #eee 101%) !important;
            color: white              !important;
            border-color: red         !important;
            box-shadow: 0 4px 15px rgba(255, 204, 203, 0.3);
        }
        
        .timeline-filter-btn.active:hover {
            background: linear-gradient(155deg, red 55%, #eee 101%) !important;
            color: #2e2e2e            !important;
            border-color: red         !important;
            box-shadow: 0 4px 15px rgba(255, 204, 203, 0.3);
        }                          