/* =====================================================================
   EVENT WEATHER MONITOR — MAIN STYLESHEET
   Matches SoundMonkey Events & Productions main site styling
   ===================================================================== */

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

body {
    font-family: 'Nunito', sans-serif;
    margin: 0;
    padding: 0;
    background: #f5f5f5;
}

/* =====================================================================
   HEADER
   ===================================================================== */
.header-bar {
    background: #1a1a1a;
    color: #fff;
    padding: 12px 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 2px solid #CC0000;
}

.header-brand {
    font-size: 18px;
    font-weight: 800;
    letter-spacing: -0.5px;
    margin: 0;
}

.header-brand .red {
    color: #CC0000;
}

.header-brand .subtitle {
    font-size: 11px;
    font-weight: 400;
    color: #aaaaaa;
    margin-top: 2px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.header-user {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 13px;
    color: #cccccc;
}

.header-user a {
    color: #CC0000;
    text-decoration: none;
    font-weight: 700;
    font-size: 12px;
    padding: 4px 10px;
    border: 1px solid #CC0000;
    border-radius: 4px;
    transition: background 0.15s;
}

.header-user a:hover {
    background: #CC0000;
    color: #fff;
}

/* =====================================================================
   STATUS BADGE (online / offline indicator)
   ===================================================================== */
.status-badge {
    font-size: 11px;
    padding: 3px 8px;
    border-radius: 4px;
    font-weight: 700;
}

.status-online {
    background: #2e7d32;
    color: #fff;
}

.status-offline {
    background: #cc6600;
    color: #fff;
}

/* =====================================================================
   PAGE CONTENT
   ===================================================================== */
.content {
    padding: 16px;
    font-family: 'Nunito', sans-serif;
}

/* =====================================================================
   BUTTONS
   ===================================================================== */
.btn {
    padding: 8px 16px;
    border-radius: 4px;
    border: none;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    font-family: 'Nunito', sans-serif;
}

.btn-start {
    background: #2e7d32;
    color: #fff;
}

.btn-stop {
    background: #cc0000;
    color: #fff;
}

/* =====================================================================
   NAV MENU
   ===================================================================== */
.sm-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 2px;
    padding: 8px 12px;
    background: #242424;
}

.sm-nav a {
    color: #cccccc;
    text-decoration: none;
    font-size: 12px;
    font-weight: 600;
    padding: 6px 10px;
    border-radius: 4px;
    transition: background 0.15s, color 0.15s;
    white-space: nowrap;
}

.sm-nav a:hover {
    background: #CC0000;
    color: #ffffff;
}

.sm-nav a.active {
    background: #CC0000;
    color: #ffffff;
}

.offline-note {
    background: #fff3cd;
    border-bottom: 2px solid #cc6600;
    color: #663c00;
    font-size: 12px;
    font-weight: 600;
    padding: 6px 16px;
    text-align: center;
}
