body {
    font-family: 'Segoe UI', sans-serif;
    background: #f8f9fa;
    margin: 0;
    color: #212529;
}

.container {
    max-width: 960px;
    margin: 0 auto;
    padding: 2rem;
}

.header {
    background-color: #111827;
    color: white;
    padding: 1.5rem 0;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.status-meta {
    text-align: right;
}

.overall-status {
    background: white;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0,0,0,0.05);
    padding: 1rem 1.5rem;
    display: flex;
    align-items: center;
    margin-bottom: 2rem;
}
        /* Nav bar */
        .navbar {
            background-color: #0b0f1a;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 12px 30px;
            box-shadow: 0 2px 4px rgba(0,0,0,0.25);
            position: sticky;
            top: 0;
            z-index: 1000;
        }

        .nav-left,
        .nav-right {
            display: flex;
            align-items: center;
        }

        .nav-left a {
            color: white;
            text-decoration: none;
            margin-right: 20px;
            font-weight: 600;
            font-size: 16px;
            padding: 6px 8px;
            border-radius: 6px;
            transition: background-color 0.2s ease;
        }

        .nav-left a:hover,
        .nav-left a.active {
            background-color: #30d158;
            color: #0b0f1a;
        }

        /* Username dropdown */
        .user-menu {
            position: relative;
            color: white;
            cursor: pointer;
            user-select: none;
            font-weight: 600;
            font-size: 16px;
            padding: 6px 12px;
            border-radius: 6px;
            transition: background-color 0.2s ease;
        }

        .user-menu:hover {
            background-color: #30d158;
            color: #0b0f1a;
        }

        .dropdown-content {
            display: none;
            position: absolute;
            right: 0;
            background-color: white;
            min-width: 140px;
            box-shadow: 0 4px 12px rgba(0,0,0,0.15);
            border-radius: 8px;
            margin-top: 8px;
            z-index: 10;
        }

        .dropdown-content a {
            color: #0b0f1a;
            padding: 10px 16px;
            text-decoration: none;
            display: block;
            font-weight: 500;
            border-radius: 6px;
            transition: background-color 0.2s ease;
        }

        .dropdown-content a:hover {
            background-color: #30d158;
            color: white;
        }

        /* Show dropdown when active */
        .user-menu.active + .dropdown-content {
            display: block;
        }


.status-indicator {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    margin-right: 1rem;
}

.status-text {
    font-weight: bold;
    font-size: 1.25rem;
}

.services h3 {
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

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

.service-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: white;
    padding: 1rem;
    border-radius: 6px;
    margin-bottom: 0.75rem;
    box-shadow: 0 0 4px rgba(0, 0, 0, 0.05);
}

.service-name {
    font-weight: 600;
}

.service-status {
    font-weight: 500;
}

.code {
    color: #666;
    font-size: 0.9rem;
    margin-left: 0.25rem;
}

.green {
    color: #22c55e;
    background-color: #dcfce7;
}

.red {
    color: #ef4444;
    background-color: #fee2e2;
}

.status-indicator.green {
    background-color: #22c55e;
}

.status-indicator.red {
    background-color: #ef4444;
}
