/* SeemaS Status Page Styles */

/* Font Faces */
@font-face {
    font-family: 'Encode Sans Expanded';
    src: url('./EncodeSansExpanded-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Encode Sans Expanded';
    src: url('./EncodeSansExpanded-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'Encode Sans Expanded';
    src: url('./EncodeSansExpanded-SemiBold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
}

@font-face {
    font-family: 'Encode Sans Expanded';
    src: url('./EncodeSansExpanded-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
}

/* Base Styles */
html {
    scroll-behavior: smooth;
}

/* Status Indicators */
.status-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    display: inline-block;
    margin-right: 8px;
}

.status-operational {
    background-color: #10b981;
    box-shadow: 0 0 0 2px rgba(16, 185, 129, 0.2);
}

.status-degraded {
    background-color: #f59e0b;
    box-shadow: 0 0 0 2px rgba(245, 158, 11, 0.2);
}

.status-outage {
    background-color: #ef4444;
    box-shadow: 0 0 0 2px rgba(239, 68, 68, 0.2);
}

.status-checking {
    background-color: #6b7280;
    box-shadow: 0 0 0 2px rgba(107, 114, 128, 0.2);
}

/* (pulse animation removed as unused) */

/* Custom Components */
.refresh-button {
    background-color: #3c79e0;
    color: white;
    padding: 12px 24px;
    border-radius: 100px;
    font-family: 'Encode Sans Expanded', sans-serif;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.2s ease;
    border: none;
    cursor: pointer;
}

.refresh-button:hover {
    background-color: #5dade2;
    transform: scale(0.95);
}

.service-card {
    background-color: #01061b;
    border: 1px solid #264686;
    border-radius: 12px;
    padding: 24px;
    transition: all 0.2s ease;
}

.service-card:hover {
    border-color: #3c79e0;
}

.status-card {
    background-color: #01061b;
    border: 1px solid #264686;
    border-radius: 12px;
    padding: 24px;
    margin-bottom: 32px;
}

/* (history-card removed as history UI was dropped) */

/* Responsive Design */
@media (max-width: 768px) {
    .service-card {
        padding: 16px;
    }
    
    .status-card {
        padding: 16px;
    }
    
    /* (history-card responsive rules removed) */
}
