/* =====================================================
   JADWAL SHOLAT MASJID – CSS FINAL FIX TOTAL
   DESKTOP & MOBILE (ANTI NUMPUK)
   ===================================================== */

/* =========================
   DESKTOP
   ========================= */
.jsm-header {
  background: #118847;

  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  gap: 18px;
  flex-wrap: nowrap;

  position: relative;
  top: 35px;
  z-index: 5;

  padding: 8px 16px;
  margin: 0;
  font-family: Arial, sans-serif;
}

/* ITEM JADWAL */
.jsm-item {
  flex: 0 0 auto;
  text-align: center;
  color: #ffffff;
  line-height: 1.2;
}

.jsm-item span {
  display: block;
  font-size: 12px;
  font-weight: 600;
}

.jsm-item strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
}

/* =========================
   COUNTDOWN – KANAN (DESKTOP)
   ========================= */
.jsm-countdown-right {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);

  display: flex;
  flex-direction: column;
  align-items: flex-end;
  text-align: right;

  color: #ffffff;
  white-space: nowrap;
  pointer-events: none;
}

.jsm-cd-label {
  font-size: 11px;
  font-weight: 600;
}

.jsm-cd-time {
  font-size: 13px;
  font-weight: 700;
}

/* =====================================================
   MOBILE – FIX NUMPUK TOTAL
   ===================================================== */
@media (max-width: 768px) {

  /* HEADER JADI RELATIVE */
  .jsm-header {
    position: absolute;
    top: 26px;
    left: 12px;
    right: 12px;
    z-index: 40;

    background: #118847;
    border-radius: 4px;

    display: flex;
    flex-direction: row;
    align-items: center;
    flex-wrap: nowrap;

    /* 🔑 SISAKAN RUANG KANAN UNTUK COUNTDOWN */
    padding: 8px 90px 8px 10px;
  }

  /* JADWAL – 1 BARIS, TIDAK TERGANGGU */
  .jsm-item {
    flex: 1;
    min-width: 0;
    text-align: center;
    line-height: 1.2;
  }

  .jsm-item span {
    font-size: 10px;
    font-weight: 600;
    white-space: nowrap;
  }

  .jsm-item strong {
    font-size: 12px;
    font-weight: 700;
    white-space: nowrap;
  }

  /* COUNTDOWN – FLOAT KANAN (KELUAR DARI FLOW) */
  .jsm-countdown-right {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);

    display: flex;
    flex-direction: column;
    align-items: flex-end;
    text-align: right;

    font-size: 11px;
    line-height: 1.2;
  }
}

/* =========================
   WARNA COUNTDOWN OTOMATIS
   ========================= */

/* WARNA NORMAL */
.jsm-countdown-right.cd-green {
  color: #ffffff; /* putih */
}

/* 15 MENIT MENJELANG ADZAN */
.jsm-countdown-right.cd-yellow {
  color: #ffeb3b; /* kuning */
}

/* 5 MENIT MENJELANG ADZAN */
.jsm-countdown-right.cd-red {
  color: #ff5252; /* merah */
}
