/* ============================================
   Status Page - Main Styles
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

:root {
    --color-bg: #ffffff;
    --color-bg-secondary: #f8fafc;
    --color-text: #0f172a;
    --color-text-secondary: #64748b;
    --color-border: #e2e8f0;
    --color-primary: #1e293b;
    --color-success: #10b981;
    --color-warning: #f59e0b;
    --color-danger: #ef4444;
    --color-info: #3b82f6;
    --navbar-height: 64px;
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    height: 100%;
}

body {
    font-family: var(--font-family);
    color: var(--color-text);
    background-color: var(--color-bg-secondary);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* ============================================
   Container
   ============================================ */
.status-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* ============================================
   Navbar
   ============================================ */
.status-navbar {
    background: var(--color-bg);
    border-bottom: 1px solid var(--color-border);
    position: sticky;
    top: 0;
    z-index: 1000;
    height: var(--navbar-height);
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.95);
}

.status-navbar .status-container {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.navbar-logo {
    height: 48px;
    width: auto;
    transition: transform 0.2s ease;
}

.navbar-logo:hover {
    transform: scale(1.05);
}

.navbar-links {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.nav-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    color: var(--color-text-secondary);
    text-decoration: none;
    font-size: 0.9375rem;
    font-weight: 500;
    border-radius: 0.5rem;
    transition: all 0.2s ease;
}

.nav-link:hover {
    color: var(--color-text);
    background: var(--color-bg-secondary);
}

.nav-link.active {
    color: var(--color-primary);
    background: var(--color-bg-secondary);
}

.nav-link svg {
    opacity: 0.7;
}

.nav-link:hover svg,
.nav-link.active svg {
    opacity: 1;
}

/* ============================================
   Main Content
   ============================================ */
.status-main {
    min-height: calc(100vh - var(--navbar-height) - 80px);
    padding: 3rem 0;
}

/* ============================================
   Page Header
   ============================================ */
.page-header {
    text-align: center;
    margin-bottom: 3rem;
}

.page-header h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 0.75rem;
    letter-spacing: -0.025em;
}

.page-header p {
    font-size: 1.125rem;
    color: var(--color-text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

/* ============================================
   Overall Status Banner
   ============================================ */
.status-banner {
    background: linear-gradient(135deg, var(--color-success) 0%, #059669 100%);
    color: white;
    padding: 1.5rem 2rem;
    border-radius: 1rem;
    margin-bottom: 2.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    box-shadow: 0 4px 6px -1px rgba(16, 185, 129, 0.2);
}

.status-banner.degraded {
    background: linear-gradient(135deg, var(--color-warning) 0%, #d97706 100%);
    box-shadow: 0 4px 6px -1px rgba(245, 158, 11, 0.2);
}

.status-banner.outage {
    background: linear-gradient(135deg, var(--color-danger) 0%, #dc2626 100%);
    box-shadow: 0 4px 6px -1px rgba(239, 68, 68, 0.2);
}

.status-banner-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 0.75rem;
    flex-shrink: 0;
}

.status-banner-content h2 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.status-banner-content p {
    font-size: 0.9375rem;
    opacity: 0.95;
}

.status-release-list {
    list-style: none;
    margin: 0.5rem 0 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.status-release-item {
    font-size: 0.9375rem;
}

.status-release-link {
    color: inherit;
    text-decoration: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.45);
    transition: border-color 0.2s ease, opacity 0.2s ease;
}

.status-release-link:hover {
    opacity: 1;
    border-bottom-color: rgba(255, 255, 255, 0.95);
}

.overall-section {
    margin-bottom: 2.5rem;
}

.overall-summary-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
}

.summary-card {
    background: var(--color-bg);
    border: 1px solid var(--color-border);
    border-radius: 0.75rem;
    padding: 1rem 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.summary-label {
    font-size: 0.8125rem;
    color: var(--color-text-secondary);
}

.summary-value {
    font-size: 1.5rem;
    line-height: 1.2;
    color: var(--color-text);
}

/* ============================================
   Services Grid
   ============================================ */
.services-section {
    margin-bottom: 3rem;
}

.section-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 1.5rem;
    letter-spacing: -0.025em;
}

.service-card {
    background: var(--color-bg);
    border: 1px solid var(--color-border);
    border-radius: 1rem;
    padding: 1.5rem;
    margin-bottom: 1.25rem;
    transition: all 0.2s ease;
}

.service-card:hover {
    border-color: var(--color-text-secondary);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.service-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1rem;
}

.service-info {
    flex: 1;
}

.service-name {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: 0.25rem;
}

.service-description {
    font-size: 0.875rem;
    color: var(--color-text-secondary);
}

.service-status {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    font-size: 0.875rem;
    font-weight: 600;
}

.service-status.operational {
    background: rgba(16, 185, 129, 0.1);
    color: var(--color-success);
}

.service-status.degraded {
    background: rgba(245, 158, 11, 0.1);
    color: var(--color-warning);
}

.service-status.outage {
    background: rgba(239, 68, 68, 0.1);
    color: var(--color-danger);
}

.status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: currentColor;
}

/* ============================================
   Uptime Bar (90 days)
   ============================================ */
.uptime-bar {
    margin-top: 1rem;
}

.uptime-bar-label {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.75rem;
}

.uptime-label-text {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--color-text-secondary);
}

.uptime-percentage {
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--color-success);
}

.uptime-days {
    display: grid;
    grid-template-columns: repeat(90, 1fr);
    gap: 3px;
    height: 32px;
}

.uptime-day {
    background: var(--color-success);
    border-radius: 3px;
    transition: all 0.2s ease;
    cursor: pointer;
    position: relative;
}

.uptime-day.degraded {
    background: var(--color-warning);
}

.uptime-day.outage {
    background: var(--color-danger);
}

.uptime-day.not-published {
    background: var(--color-border);
}

.uptime-day.no-data {
    background: var(--color-border);
}

.uptime-link {
    display: block;
    text-decoration: none;
}

.uptime-link .uptime-day {
    width: 100%;
    height: 100%;
}

.uptime-day:hover {
    transform: scale(1.2);
    z-index: 10;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.uptime-tooltip {
    display: none;
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(-8px);
    background: var(--color-text);
    color: white;
    padding: 0.5rem 0.75rem;
    border-radius: 0.5rem;
    font-size: 0.75rem;
    white-space: nowrap;
    z-index: 100;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.3);
}

.uptime-day:hover .uptime-tooltip {
    display: block;
}

.uptime-note {
    font-size: 0.75rem;
    color: var(--color-text-secondary);
    margin-top: 0.5rem;
    margin-bottom: 0;
    font-style: italic;
}

.uptime-history-link {
    color: #1e293b;
    font-weight: 600;
    text-decoration: none;
}

.uptime-history-link:hover {
    text-decoration: underline;
    color: #000;
}

.uptime-legend {
    display: flex;
    justify-content: flex-end;
    gap: 1rem;
    margin-top: 0.75rem;
    font-size: 0.75rem;
    color: var(--color-text-secondary);
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.legend-dot {
    width: 12px;
    height: 12px;
    border-radius: 3px;
}

/* ============================================
   Incidents Section
   ============================================ */
.incidents-section {
    margin-top: 3rem;
}

.incident-card {
    background: var(--color-bg);
    border: 1px solid var(--color-border);
    border-radius: 1rem;
    padding: 1.5rem;
    margin-bottom: 1rem;
}

.incident-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 1rem;
}

.incident-info {
    flex: 1;
}

.incident-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: 0.5rem;
}

.incident-meta {
    display: flex;
    gap: 1rem;
    font-size: 0.875rem;
    color: var(--color-text-secondary);
}

.incident-badges {
    display: flex;
    gap: 0.5rem;
    flex-shrink: 0;
}

.incident-badge {
    padding: 0.25rem 0.75rem;
    border-radius: 0.375rem;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.025em;
}

.incident-badge.severity-low {
    background: rgba(16, 185, 129, 0.1);
    color: var(--color-success);
}

.incident-badge.severity-medium {
    background: rgba(59, 130, 246, 0.1);
    color: var(--color-info);
}

.incident-badge.severity-high {
    background: rgba(245, 158, 11, 0.1);
    color: var(--color-warning);
}

.incident-badge.severity-critical {
    background: rgba(239, 68, 68, 0.1);
    color: var(--color-danger);
}

.incident-badge.status-investigating {
    background: rgba(245, 158, 11, 0.1);
    color: var(--color-warning);
}

.incident-badge.status-identified {
    background: rgba(59, 130, 246, 0.1);
    color: var(--color-info);
}

.incident-badge.status-monitoring {
    background: rgba(139, 92, 246, 0.1);
    color: #8b5cf6;
}

.incident-badge.status-resolved {
    background: rgba(16, 185, 129, 0.1);
    color: var(--color-success);
}

.incident-update {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--color-border);
    font-size: 0.9375rem;
    color: var(--color-text-secondary);
}

.btn-view-all {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background: var(--color-bg);
    border: 1px solid var(--color-border);
    border-radius: 0.5rem;
    color: var(--color-text);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9375rem;
    transition: all 0.2s ease;
    margin-top: 1rem;
}

.btn-view-all:hover {
    border-color: var(--color-text-secondary);
    transform: translateY(-1px);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

/* ============================================
   Badge Styles (Public Pages)
   ============================================ */
.badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 600;
    line-height: 1.2;
    background: transparent;
    border: 1px solid transparent;
    white-space: nowrap;
}

.badge-info {
    color: #3b82f6;
    border-color: #3b82f6;
}

.badge-warning {
    color: #f59e0b;
    border-color: #f59e0b;
}

.badge-success {
    color: #10b981;
    border-color: #10b981;
}

.badge-danger {
    color: #ef4444;
    border-color: #ef4444;
}

/* ============================================
   Incident Timeline
   ============================================ */
.incident-timeline {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--color-border);
}

.timeline-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: 1rem;
}

.timeline-items {
    position: relative;
    padding-left: 1.5rem;
}

.timeline-items::before {
    content: '';
    position: absolute;
    left: 4px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--color-border);
}

.timeline-item {
    position: relative;
    padding-bottom: 1.5rem;
}

.timeline-item:last-child {
    padding-bottom: 0;
}

.timeline-dot {
    position: absolute;
    left: -1.5rem;
    top: 4px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--color-primary);
    border: 2px solid var(--color-bg);
    box-shadow: 0 0 0 2px var(--color-border);
}

.timeline-content p {
    font-size: 0.9375rem;
    color: var(--color-text);
    margin-bottom: 0.25rem;
    line-height: 1.6;
}

.timeline-time {
    font-size: 0.8125rem;
    color: var(--color-text-secondary);
}

/* ============================================
   Pagination
   ============================================ */
.pagination-wrapper {
    margin-top: 2rem;
    display: flex;
    justify-content: center;
}

/* ============================================
   Empty State
   ============================================ */
.empty-state {
    text-align: center;
    padding: 4rem 2rem;
    background: var(--color-bg);
    border: 1px solid var(--color-border);
    border-radius: 1rem;
}

.empty-state-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 1.5rem;
    color: var(--color-text-secondary);
    opacity: 0.5;
}

.empty-state h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: 0.5rem;
}

.empty-state p {
    color: var(--color-text-secondary);
}

/* ============================================
   Footer
   ============================================ */
.status-footer {
    background: var(--color-bg);
    border-top: 1px solid var(--color-border);
    padding: 2rem 0;
    margin-top: 4rem;
}

.status-footer p {
    text-align: center;
    color: var(--color-text-secondary);
    font-size: 0.875rem;
}

/* ============================================
   Releases Page
   ============================================ */
.release-card {
    background: var(--color-bg);
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    border: 1px solid var(--color-border);
    transition: all 0.2s ease;
}

.release-card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transform: translateY(-1px);
}

.release-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1rem;
}

.release-info {
    flex: 1;
}

.release-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: 0.5rem;
}

.release-meta {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.875rem;
    color: var(--color-text-secondary);
}

.release-meta span {
    display: flex;
    align-items: center;
}

.release-badge {
    padding: 0.375rem 0.875rem;
    border-radius: 20px;
    font-size: 0.8125rem;
    font-weight: 500;
    white-space: nowrap;
}

.release-badge.status-completed {
    background-color: #dcfce7;
    color: #166534;
}

.release-badge.status-in_progress {
    background-color: #fef9c3;
    color: #854d0e;
}

.release-badge.status-scheduled {
    background-color: #dbeafe;
    color: #1e40af;
}

.release-description {
    color: var(--color-text-secondary);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.release-description p {
    margin: 0;
}

.release-updates {
    background: var(--color-bg-secondary);
    border-radius: 8px;
    padding: 1rem;
    margin-top: 1rem;
}

.updates-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: 0.75rem;
}

.updates-header svg {
    color: var(--color-primary);
}

.updates-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.updates-list li {
    padding: 0.5rem 0;
    color: var(--color-text-secondary);
    font-size: 0.9375rem;
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.update-bullet {
    color: var(--color-primary);
    font-weight: 600;
    font-size: 1.25rem;
    line-height: 1;
}

.pagination-wrapper {
    margin-top: 2rem;
    display: flex;
    justify-content: center;
}

/* ============================================
   Responsive
   ============================================ */
@media (max-width: 768px) {
    .page-header h1 {
        font-size: 2rem;
    }

    .uptime-days {
        grid-template-columns: repeat(30, 1fr);
    }

    .incident-header {
        flex-direction: column;
        gap: 1rem;
    }

    .incident-badges {
        width: 100%;
        justify-content: flex-start;
    }

    .release-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .release-badge {
        align-self: flex-start;
    }

    .release-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

    .overall-summary-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 480px) {
    .status-container {
        padding: 0 1rem;
    }

    .uptime-days {
        height: 24px;
        gap: 2px;
    }
}

/* ============================================
   Filter Styles for Public Pages
   ============================================ */

.filter-card {
    background: white;
    border-radius: 1.25rem;
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.08);
    padding: 1.5rem;
    margin-bottom: 2rem;
}

.filter-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.filter-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 1.5rem;
}

@media (max-width: 768px) {
    .filter-row {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   Mobile Menu
   ============================================ */

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 24px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
    transition: transform 0.3s ease;
}

.mobile-menu-toggle span {
    display: block;
    width: 100%;
    height: 3px;
    background-color: #475569;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.mobile-menu-toggle:hover span {
    background-color: #000;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: translateY(10.5px) rotate(45deg);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: translateY(-10.5px) rotate(-45deg);
}

.mobile-menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
    opacity: 0;
    transition: opacity 0.3s ease;
    backdrop-filter: blur(4px);
}

.mobile-menu-overlay.active {
    display: block;
    opacity: 1;
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }

    .navbar-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: white;
        flex-direction: column;
        padding: 6rem 2rem 2rem;
        box-shadow: -4px 0 20px rgba(0, 0, 0, 0.1);
        transition: right 0.3s ease;
        z-index: 1000;
        overflow-y: auto;
    }

    .navbar-links.mobile-active {
        right: 0;
    }

    .navbar-links .nav-link {
        width: 100%;
        justify-content: flex-start;
        padding: 1rem 1.5rem;
        border-radius: 0.75rem;
        margin-bottom: 0.5rem;
        font-size: 1rem;
    }

    .navbar-links .nav-link span {
        display: inline;
    }

    .navbar-links .nav-link svg {
        margin-right: 1rem;
        width: 20px;
        height: 20px;
    }

    .navbar-links .nav-link:hover {
        background-color: #f1f5f9;
    }

    .navbar-links .nav-link.active {
        background-color: #e2e8f0;
        color: #000;
        font-weight: 600;
    }

    .status-container {
        justify-content: space-between;
    }
}

.filter-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.filter-group label {
    font-weight: 600;
    color: #0f172a;
    font-size: 0.875rem;
    margin-bottom: 0.25rem;
}

.filter-group input,
.filter-group input[type="date"],
.filter-group .form-control {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #e2e8f0;
    border-radius: 0.5rem;
    font-size: 1rem;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background-color: white;
    color: #0f172a;
    box-sizing: border-box;
    transition: all 0.2s ease;
}

.filter-group input:focus,
.filter-group input[type="date"]:focus,
.filter-group .form-control:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.filter-actions {
    display: flex;
    gap: 1rem;
    justify-content: flex-start;
    flex-wrap: wrap;
}

.filter-actions .btn {
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: 600;
    cursor: pointer;
    border: none;
    font-size: 0.875rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    white-space: nowrap;
}

.filter-actions .btn-primary {
    background-color: #1e293b;
    color: white;
}

.filter-actions .btn-primary:hover {
    background-color: #000;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.filter-actions .btn-secondary {
    background-color: #f3f4f6;
    color: #0f172a;
    border: 1px solid #e5e7eb;
}

.filter-actions .btn-secondary:hover {
    background-color: #e5e7eb;
    border-color: #d1d5db;
}

.filter-alert {
    margin-bottom: 1rem;
    padding: 0.75rem;
    background-color: #fee;
    border: 1px solid #fcc;
    border-radius: 0.5rem;
    color: #c33;
}

.inline-icon {
    display: inline-block;
    vertical-align: middle;
    margin-right: 4px;
}

.status-banner-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.status-banner-clickable {
    cursor: pointer;
    transition: opacity 0.3s;
}

.legend-dot.legend-success {
    background: var(--color-success);
}

.legend-dot.legend-warning {
    background: var(--color-warning);
}

.legend-dot.legend-danger {
    background: var(--color-danger);
}

.legend-dot.legend-not-published {
    background: #d1d5db;
}