body {
    font-family: 'Cairo', sans-serif;
    background: linear-gradient(135deg, #f5f0e1, #e6d8c3);
    color: #4b2e2e;
    text-align: center;
    padding: 20px;
    transition: 0.4s;
}

h1 { font-size: 32px; margin-bottom: 20px; }

button {
    padding: 12px 22px;
    margin: 6px;
    border-radius: 14px;
    border: none;
    background: #a9746e;
    color: white;
    font-size: 16px;
    cursor: pointer;
}

#display {
    background: #fff8f0;
    margin-top: 20px;
    padding: 15px;
    border-radius: 15px;
    min-height: 70px;
    font-size: 18px;
}

.counter {
    margin-top: 15px;
    font-size: 18px;
}

#statsPanel {
    display: none;
    position: fixed;
    top: 15px;
    left: 15px;
    background: #80574f;
    color: white;
    padding: 15px;
    border-radius: 15px;
    width: 230px;
    font-size: 16px;
}

#statsPanel h3 {
    font-size: 18px;
    margin:0 0 10px 0;
    position: relative;
}

#closeStats {
    position: absolute;
    top: 5px;
    left: 5px;
    font-size: 14px;
    cursor: pointer;
    font-weight: bold;
    transition: transform 0.2s;
}

#closeStats:hover{
    transform: rotate(90deg);
}

#prayerScreen{
    position:fixed;
    top:0; left:0;
    width:100%;
    height:100%;
    background:#fff3e0;
    display:none;
    z-index:200;
    padding:20px;
    overflow:auto;
}

#prayerHeader{
    display:flex;
    justify-content:space-between;
    align-items:center;
    font-size:18px;
    margin-bottom:20px;
}

#prayerTimes{
    list-style:none;
    padding:0;
}

#prayerTimes li{
    font-size:18px;
    margin:12px 0;
    display:flex;
    justify-content:space-between;
    white-space:nowrap;
}

.dark {
    background: #2e1c1c;
    color: #fff;
}

.dark #display{
    background:#4b2e2e;
}

.dark #prayerScreen{
    background:#2e1c1c;
    color:white;
}

#darkModeBtn.active {
    background: gold;
    color: black;
}