/* Container Utama */
.jsid-main-container {
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: #1e293b;
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.5;
}

/* Hero Section */
.jsid-hero-section {
    text-align: center;
    margin-bottom: 40px;
}
.jsid-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(20, 184, 166, 0.1);
    color: #0f766e;
    padding: 6px 16px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 20px;
    border: 1px solid rgba(20, 184, 166, 0.2);
}
.jsid-badge span {
    width: 6px;
    height: 6px;
    background: #14b8a6;
    border-radius: 50%;
    box-shadow: 0 0 8px rgba(20, 184, 166, 0.6);
}
.jsid-main-title {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 30px;
    color: #022c22;
}
.jsid-main-title span {
    color: #0d9488;
    position: relative;
}

/* Tabel 1 Bulan */
.jsid-table-wrapper {
    background: #fff;
    border-radius: 24px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.05);
    border: 1px solid #f1f5f9;
    overflow: hidden;
    margin-top: 30px;
}
.jsid-table-header {
    background: rgba(248, 250, 252, 0.8);
    padding: 20px 24px;
    border-bottom: 1px solid #f1f5f9;
    text-align: left;
}
.jsid-table-header h3 {
    margin: 0;
    font-size: 1.25rem;
    color: #0f172a;
    font-weight: 700;
}
.jsid-table-responsive {
    overflow-x: auto;
}
.jsid-table {
    width: 100%;
    border-collapse: collapse;
    text-align: center;
    font-size: 14px;
}
.jsid-table thead {
    background: #134e4a;
    color: #fff;
    border-bottom: 4px solid #d4af37;
}
.jsid-table th {
    padding: 16px;
    font-weight: 600;
    white-space: nowrap;
}
.jsid-table td {
    padding: 14px 16px;
    border-bottom: 1px solid rgba(241, 245, 249, 0.5);
    transition: all 0.2s;
}
.jsid-row:hover { background: rgba(248, 250, 252, 0.8); }

/* Highlight Hari Ini */
.jsid-row-today {
    background: rgba(20, 184, 166, 0.05);
    font-weight: 700;
}
.jsid-row-today td { color: #0f766e; }
.jsid-today-badge {
    display: block;
    background: #d4af37;
    color: #fff;
    font-size: 9px;
    padding: 2px 6px;
    border-radius: 4px;
    margin-top: 4px;
    width: max-content;
}
.text-gold { color: #d4af37; }
.fw-bold { font-weight: 700; }

/* Kolom Tanggal Sticky (Untuk HP) */
.jsid-col-sticky {
    position: sticky;
    left: 0;
    background: inherit;
    text-align: left;
    border-right: 1px solid #f1f5f9;
    z-index: 2;
}
.jsid-table thead th:first-child {
    position: sticky;
    left: 0;
    background: #134e4a;
    z-index: 3;
}

/* Pencarian Frontend */
.jsid-search-section {
    margin-top: 60px;
    background: #f8fafc;
    border-radius: 24px;
    padding: 40px;
    border: 1px solid #e2e8f0;
}
.jsid-search-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}
.jsid-search-text h2 {
    font-size: 2rem;
    font-weight: 800;
    margin: 0 0 10px 0;
    color: #022c22;
}
.jsid-search-text h2 span { color: #0d9488; }
.jsid-search-text p { margin: 0; color: #64748b; }

.jsid-search-box {
    position: relative;
    width: 100%;
    max-width: 400px;
}
.jsid-search-icon {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    fill: #94a3b8;
}
#jsid-city-input {
    width: 100%;
    padding: 16px 16px 16px 48px;
    border-radius: 16px;
    border: 1px solid #cbd5e1;
    font-size: 15px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    outline: none;
    transition: all 0.3s;
}
#jsid-city-input:focus { border-color: #0d9488; box-shadow: 0 0 0 4px rgba(13, 148, 136, 0.1); }

/* Dropdown Autocomplete */
.jsid-autocomplete-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    margin-top: 8px;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    z-index: 50;
    display: none;
    max-height: 250px;
    overflow-y: auto;
}
.jsid-autocomplete-dropdown ul {
    list-style: none;
    margin: 0;
    padding: 8px 0;
}
.jsid-autocomplete-dropdown li {
    padding: 12px 20px;
    cursor: pointer;
    font-size: 14px;
    color: #334155;
    border-bottom: 1px solid #f1f5f9;
}
.jsid-autocomplete-dropdown li:hover { background: #f0fdfa; color: #0d9488; }
.jsid-autocomplete-dropdown .no-result { padding: 16px; text-align: center; color: #94a3b8; font-size: 14px; }

/* Responsif Mobile */
@media (max-width: 768px) {
    .jsid-search-content { flex-direction: column; text-align: center; }
    .jsid-main-title { font-size: 1.8rem; }
    .jsid-search-section { padding: 25px; }
}