body {
    margin: 0;
    background: #0f172a;
    font-family: Arial, sans-serif;
    color: white;
    overflow: hidden;
}

/* ---------------- SIDE PANEL ---------------- */
.side-panel {
    position: fixed;
    top: 0;
    right: 0;
    width: 350px;
    bottom: 150px; /* above Salah band */
    background: #0b1220;
    border-left: 4px solid #16a34a;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow-y: auto;
}

.side-panel div {
    width: 100%;
    margin: 10px 0;
    text-align: center;
}

.masjid-name { font-size: 26px; font-weight: bold; color: #22c55e; }
.clock { font-size: 40px; }
.date, .hijri, .sun, .eid, .nisab, .fidya { font-size: 16px; color: #cbd5e1; }

/* ---------------- SLIDER ---------------- */
.slider {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 150px;
    right: 350px;
    overflow: hidden;
    background: #0f172a;
}

.slide {
    width: 100%;
    height: 100%;
    position: absolute;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 36px;
    color: #22c55e;
}

.slide.active { opacity: 1; }

/* ---------------- BULLETIN ---------------- */
.bulletin {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #0e1728;
    color: #f1f5f9;
    font-size: 20px;
    white-space: nowrap;
    overflow: hidden;
    border-top: 2px solid #22c55e;
    padding: 10px 0;
}

.bulletin span {
    display: inline-block;
    padding-left: 100%;
    animation: slide 30s linear infinite;
}

@keyframes slide {
    0%   { transform: translateX(0%); }
    100% { transform: translateX(-100%); }
}

/* ---------------- SALAH BAND ---------------- */
.salah-band {
    position: fixed;
    bottom: 0;
    width: 100%;
    height: 150px;
    background: #111827;
    display: flex;
    justify-content: space-around;
    align-items: center;
    border-top: 4px solid #22c55e;
}

.salah { text-align: center; }
.name { font-weight: bold; color: #22c55e; margin-bottom: 8px; font-size: 22px; }
.label { font-size: 16px; color: #cbd5e1; }
