/* ============================
   GENERAL PAGE STYLE
   ============================ */
body {
    font-family: Arial, sans-serif;
    margin: 20px;
    background: #f5f5f5;
    color: #222;
}

h1, h2 {
    margin-bottom: 10px;
}

/* ============================
   TOP STATUS AREA LAYOUT
   ============================ */
#topStatusArea {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

/* 50% / 50% split */
#liveStatusBox {
    flex: 2;
}

#outagePanel {
    flex: 3;
}

/* ============================
   STATUS BOXES
   ============================ */
.statusBox {
    background: #ffffff;
    border-radius: 6px;
    padding: 15px;
    box-shadow: 0 0 4px rgba(0,0,0,0.15);
}

.statusBox .label {
    font-weight: bold;
    margin-bottom: 10px;
    font-size: 16px;
}

/* ============================
   LIVE DATA GROUPS (3 per row)
   ============================ */
.liveGroup {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-bottom: 12px;
}

/* ============================
   INDIVIDUAL LIVE DATA ITEMS
   ============================ */
.liveItem {
    background: #ffffff;
    border-radius: 6px;
    padding: 12px;
    text-align: center;
    box-shadow: 0 0 4px rgba(0,0,0,0.15);
}

/* ============================
   ICON + TEXT ROW (only for icon items)
   ============================ */
.liveItem.hasIcon .liveRow {
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: center;
}

.liveItem.hasIcon .liveText {
    text-align

}
/* ============================
   OUTAGE PANEL INTERNAL GRID
   ============================ */
#outageRightGrid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    align-items: start;
}

#outageInfoColumn {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

#outageList {
    max-height: 300px;
    overflow-y: auto;
}

