

/* =====================================================
   MAIN SECTION
===================================================== */

.hotspot-section {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 20px;
}

/* =====================================================
   INFORMASI UTAMA
===================================================== */

.hotspot-info {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 20px;
}

.hotspot-info-card {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 18px 20px;
  display: flex;
  justify-content: space-between;
}

.hotspot-info-label {
  font-size: 14px;
  color: #000;
  margin-bottom: 6px;
  font-weight: 600;
}

.hotspot-info-value {
  font-size: 14px;
  font-weight: 600;
  color: #111827;
}

/* =====================================================
   MAP SECTION
   SIDEBAR 1/3
   MAP 2/3
===================================================== */

.hotspot-map-section {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 20px;
  align-items: stretch;
  margin-bottom: 24px;
}

/* =====================================================
   SIDEBAR
===================================================== */

.hotspot-sidebar {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.sidebar-card {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 16px;
}

.sidebar-title {
  margin: 0 0 14px;
  font-size: 16px;
  font-weight: 700;
  color: #111827;
}

.side-section h3 {
  font-size: 16px;
  margin-bottom: 16px;
}


/* =====================================================
   KABUPATEN
===================================================== */

/* =========================================
   JUMLAH TITIK PER KABUPATEN
========================================= */

.kabupaten-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.kabupaten-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 10px;
  border-radius: 6px;
  background: #f5f7fa;
  font-size: 13px;
}

.kabupaten-item .kabupaten-name {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.kabupaten-item .kabupaten-count {
  font-weight: 700;
  margin-left: 8px;
}

.sidebar-loading {
  font-size: 13px;
  color: #9ca3af;
}

/* =====================================================
   MAP
===================================================== */

.hotspot-map-card {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  overflow: hidden;

  /*
     * Supaya tinggi sidebar dan map sama.
     */
  height: 100%;

  display: flex;
  flex-direction: column;
}

.hotspot-map {
  flex: 1;
  min-height: 0;
  height: 100%;
}

.hotspot-map iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 760px;
  border: 0;
}

/* =====================================================
   LEGENDA
===================================================== */
.legend-group-item {
  display: flex;
  justify-content: space-between;
}

.legend-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.legend-subtitle {
  font-size: 12px;
  font-weight: 700;
  color: #6b7280;
  margin-bottom: 2px;
}

.hotspot-legend-item {
  display: flex;
  align-items: center;
  gap: 9px;
  min-height: 22px;
  font-size: 12px;
  color: #374151;
}

/* Confidence */

.legend-confidence {
  width: 13px;
  height: 13px;
  border-radius: 50%;
  flex: 0 0 13px;
}

.legend-confidence.low {
  background: #16a34a;
}

.legend-confidence.medium {
  background: #eab308;
}

.legend-confidence.high {
  background: #dc2626;
}

/* =====================================================
   SATELLITE ICON
===================================================== */

.satellite-icon {
  width: 12px;
  height: 12px;
  flex: 0 0 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

/* Suomi NPP */

.satellite-icon.circle {
  border-radius: 50%;
  background: #9ca3af;
  border: 1px solid #000;
}

/* NOAA-21 */

.satellite-icon.triangle {
  width: 0;
  height: 0;
  flex-basis: 0;
  border-left: 7px solid transparent;
  border-right: 7px solid transparent;
  border-bottom: 12px solid #9ca3af;

  filter: drop-shadow(1px 0 0 #000) drop-shadow(-0.5px 0 0 #000)
    drop-shadow(0 1px 0 #000) drop-shadow(0 -0.5px 0 #000);
}

/* Star */

.star-wrapper {
  display: inline-flex;
  /* Membuat garis tepi hitam 1px mengelilingi lekukan clip-path */
  filter: drop-shadow(1px 0 0 #000) drop-shadow(-0.5px 0 0 #000)
    drop-shadow(0 1px 0 #000) drop-shadow(0 -0.5px 0 #000);
}

.satellite-icon.star {
  width: 12px;
  height: 12px;
  background-color: #9ca3af;
  clip-path: polygon(
    50% 0%,
    61% 35%,
    98% 35%,
    68% 57%,
    79% 91%,
    50% 70%,
    21% 91%,
    32% 57%,
    2% 35%,
    39% 35%
  );
}
/* NOAA-20 */

.satellite-icon.square {
  background: #9ca3af;
  border: 1px solid #000;
}

/* TERRA/AQUA */

.satellite-icon.diamond {
  width: 12px;
  height: 12px;
  flex-basis: 12px;
  background: #9ca3af;
  border: 1px solid #000;
  transform: rotate(45deg);
}

/* Belum terkonfirmasi */

.satellite-icon.sun {
  border-radius: 50%;
  background: #9ca3af;
  border: 2px dotted #000;
}

.legend-separater {
  display: flex;
  justify-content: space-between;
}

/* =====================================================
   DIVIDER
===================================================== */

.legend-divider {
  height: 1px;
  background: #e5e7eb;
  margin: 14px 0;
}

/* =====================================================
   TREND CHART
===================================================== */

.trend-card {
  min-height: 220px;
}

.trend-chart-wrapper {
  position: relative;
  width: 100%;
  height: 175px;
}

/* =====================================================
   IMBAUAN
===================================================== */

.imbauan-list {
  margin: 0;
  padding-left: 20px;
  color: #374151;
}

.imbauan-list li {
  margin-bottom: 8px;
  font-size: 14px;
  line-height: 1.5;
}

.imbauan-list li:last-child {
  margin-bottom: 0;
}

/* =====================================================
   TABLE
===================================================== */

.hotspot-table-card {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  overflow: hidden;
}

.hotspot-table-header {
  padding: 18px 20px;
  border-bottom: 1px solid #e5e7eb;
  display: flex;
  justify-content: space-between;
}

.hotspot-table-title {
  margin: 0;
  font-size: 18px;
  font-weight: 700;
}

.hotspot-table-count {
  margin-top: 5px;
  font-size: 13px;
  color: #6b7280;
}

/*
 * Tinggi maksimal 5 baris.
 */
.hotspot-table-wrapper {
  width: 100%;
  max-height: 300px;
  overflow-x: auto;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

/*
 * Scrollbar
 */
.hotspot-table-wrapper::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

.hotspot-table-wrapper::-webkit-scrollbar-track {
  background: #f3f4f6;
}

.hotspot-table-wrapper::-webkit-scrollbar-thumb {
  background: #cbd5e1;
  border-radius: 999px;
}

/* Table */

.hotspot-table {
  width: 100%;
  min-width: 900px;
  border-collapse: collapse;
}

.hotspot-table th,
.hotspot-table td {
  padding: 11px 14px;
  text-align: left;
  border-bottom: 1px solid #e5e7eb;
  white-space: nowrap;
}

.hotspot-table th {
  position: sticky;
  top: 0;
  z-index: 2;

  background: #f8fafc;

  font-size: 13px;
  font-weight: 600;
  color: #374151;
}

.hotspot-table td {
  font-size: 13px;
  color: #374151;
  background: #ffffff;
}

.hotspot-table tbody tr:hover td {
  background: #f9fafb;
}

.table-loading {
  text-align: center !important;
  color: #6b7280 !important;
}

/* =====================================================
   CONFIDENCE BADGE
===================================================== */

.hotspot-confidence {
  display: inline-flex;
  align-items: center;
  padding: 4px 9px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
}

.hotspot-confidence.low {
  background: #dcfce7;
  color: #166534;
}

.hotspot-confidence.medium {
  background: #fef9c3;
  color: #854d0e;
}

.hotspot-confidence.high {
  background: #fee2e2;
  color: #991b1b;
}

/* =====================================================
   INFOGRAFIS
===================================================== */

.hotspot-infographic {
  display: flex;
  justify-content: center;
}

.infographic-button {
  border: 0;
  border-radius: 9px;
  padding: 5px 8px;

  background: #2563eb;
  color: #ffffff;

  font-size: 14px;
  font-weight: 600;

  cursor: pointer;

  transition:
    transform 0.15s ease,
    background 0.15s ease;
}

.infographic-button:hover {
  background: #1d4ed8;
}

.infographic-button:active {
  transform: translateY(1px);
}

.infographic-button:disabled {
  opacity: 0.6;
  cursor: wait;
}

/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 900px) {
  .hotspot-section {
    padding: 12px;
  }

  /* =============================================
       INFO ATAS
    ============================================== */

  .hotspot-info {
    grid-template-columns: 1fr;
    gap: 10px;
    margin-bottom: 14px;
  }

  .hotspot-info-card {
    padding: 14px 16px;
  }

  .hotspot-info-value {
    font-size: 14px;
  }

  /* =============================================
       SECTION MAP + SIDEBAR
    ============================================== */

  .hotspot-map-section {
    display: flex;
    flex-direction: column;
    gap: 14px;
  }

  /*
     * MAP DITAMPILKAN TERLEBIH DAHULU
     */

  .hotspot-map-card {
    order: 1;
  }

  .hotspot-sidebar {
    order: 2;
  }
  .hotspot-map-title {
    padding: 13px 15px;
    font-size: 16px;
  }

  .hotspot-map {
    height: 500px;
  }

  .hotspot-map iframe {
    min-height: 500px;
  }

  /* =============================================
       SIDEBAR
    ============================================== */

  .sidebar-card {
    padding: 14px;
  }

  /* =============================================
       TABEL RINCIAN
    ============================================== */

  .hotspot-table-card {
    margin-top: 14px;
    border-radius: 10px;
  }

  .hotspot-table-header {
    padding: 14px 15px;
  }

  .hotspot-table-title {
    font-size: 16px;
  }

  .hotspot-table-count {
    font-size: 12px;
  }

  .hotspot-table-wrapper {
    max-height: 285px;
    overflow-x: auto;
    overflow-y: auto;
  }

  .hotspot-table {
    min-width: 900px;
  }

  .hotspot-table th,
  .hotspot-table td {
    padding: 10px 12px;
  }

  .hotspot-table th {
    font-size: 12px;
  }

  .hotspot-table td {
    font-size: 12px;
  }

  /* =============================================
       INFOGRAFIS
    ============================================== */


  .infographic-button {
    width: 100%;
    padding: 5px 8px;
    font-size: 13px;
  }
}

@media (max-width: 600px) {
  .kabupaten-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 6px;
  }

  .kabupaten-item {
    padding: 7px 8px;
    font-size: 12px;
  }
}
