#tarif-wrapper {
    font-family: 'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;
    max-width: 100%;
    margin: 0 auto;
}

#tarif-container {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    border: 1px solid #e2e8f0;
}

#tarif-container table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
}

#tarif-container thead tr {
    background: #005CAB;
    color: #fff;
}

#tarif-container thead th {
    padding: 16px 24px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

#tarif-container thead th:last-child {
    text-align: center;
}

#tarif-container tbody tr {
    border-bottom: 1px solid #f1f5f9;
    transition: background 0.15s;
}

#tarif-container tbody tr:last-child {
    border-bottom: none;
}

#tarif-container tbody tr:hover {
    background: #f8fafc !important;
}

#tarif-container tbody tr.row-even {
    background: #fff;
}

#tarif-container tbody tr.row-odd {
    background: #f8fafc;
}

#tarif-container td {
    padding: 14px 24px;
    vertical-align: middle;
    font-size: 0.9rem;
    color: #334155;
}

#tarif-container td:last-child {
    text-align: center;
}

.td-daya {
    font-weight: 700;
    color: #1e293b;
}

.harga-asli {
    display: block;
    font-size: 0.75rem;
    color: #94a3b8;
    text-decoration: line-through;
}

.harga-diskon {
    display: block;
    font-size: 1.1rem;
    font-weight: 800;
    color: #16a34a;
}

.harga-normal {
    display: block;
    font-size: 1.1rem;
    font-weight: 800;
    color: #005CAB;
}

.badge-diskon {
    display: inline-block;
    margin-top: 4px;
    background: #dcfce7;
    color: #15803d;
    font-size: 0.6rem;
    font-weight: 800;
    padding: 1px 8px;
    border-radius: 99px;
    border: 1px solid #bbf7d0;
    text-transform: uppercase;
}

.btn-daftar {
    display: inline-block;
    background: #FFD100;
    color: #005CAB !important;
    font-weight: 800;
    font-size: 0.7rem;
    padding: 8px 24px;
    border-radius: 8px;
    text-decoration: none !important;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    transition: all 0.2s;
}

.btn-daftar:hover {
    background: #facc15;
    transform: translateY(-1px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.tarif-note {
    margin-top: 16px;
    padding: 16px;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    font-size: 0.8rem;
    color: #64748b;
    line-height: 1.5;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.tarif-note-title {
    color: #0f172a;
    font-weight: 700;
    margin-bottom: 4px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.loading-spinner {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px;
    color: #64748b;
    font-size: 0.875rem;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.spinner {
    width: 24px;
    height: 24px;
    border: 3px solid #e2e8f0;
    border-top-color: #005CAB;
    border-radius: 50%;
    animation: spin 0.6s linear infinite;
    margin-bottom: 12px;
}