/* EskomSePush Overlay */
#eskom-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    pointer-events: none; /* Allow clicking through */
    z-index: 9999; /* On top of everything */
    transition: background-color 0.5s ease;
}

/* Load Shedding Stages */
.stage-0 { background-color: rgba(0, 0, 0, 0); }
.stage-1 { background-color: rgba(0, 0, 0, 0.1); }
.stage-2 { background-color: rgba(0, 0, 0, 0.2); }
.stage-3 { background-color: rgba(0, 0, 0, 0.3); }
.stage-4 { background-color: rgba(0, 0, 0, 0.4); }
.stage-5 { background-color: rgba(0, 0, 0, 0.5); }
.stage-6 { background-color: rgba(0, 0, 0, 0.7); } /* Very dark */
.stage-7 { background-color: rgba(0, 0, 0, 0.85); }
.stage-8 { background-color: rgba(0, 0, 0, 0.95); } /* Basically off */

/* App Styles */
.eskom-app {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
    background: #f0f0f0;
    height: 100%;
    color: #333;
}

.eskom-header {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 20px;
}

.stage-display {
    font-size: 48px;
    font-weight: bold;
    padding: 20px;
    border-radius: 50%;
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    background: #fff;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.stage-controls {
    display: flex;
    gap: 10px;
}

.stage-btn {
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    background: #0078d4;
    color: white;
}

.stage-btn:hover {
    background: #005a9e;
}

.stage-btn.increase {
    background: #d13438;
}
.stage-btn.increase:hover {
    background: #a4262c;
}
