/* ============================================================
   SARANG SEMUT MICROSITE STYLES (Scoped to .ss-site)
   RuangKompetisi.com Ecosystem
   ============================================================ */

:root {
    --ss-bg-dark: #0a1410;
    --ss-nav-dark: #0d1712;
    --ss-footer-dark: #080f0c;
    --ss-forest-green: #153026;
    --ss-forest-dark: #0f241c;
    --ss-forest-light: #204537;
    --ss-accent-yellow: #facc15;
    --ss-accent-hover: #eab308;
    --ss-text-main: #1f2937;
    --ss-text-muted: #6b7280;
    --ss-card-border: #e5e7eb;
}

.ss-site {
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--ss-text-main);
    background-color: #f9fafb;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
}

/* NAVBAR */
.ss-navbar {
    background-color: var(--ss-nav-dark);
    padding: 12px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.ss-nav-brand {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
}

.ss-nav {
    display: flex;
    align-items: center;
    gap: 2px;
    flex-shrink: 0;
    white-space: nowrap;
}

.ss-nav-link {
    color: #cbd5e1 !important;
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    padding: 6px 12px !important;
    transition: all 0.2s ease;
    text-decoration: none !important;
    display: inline-block;
    position: relative;
    white-space: nowrap;
}

@media (min-width: 1200px) {
    .ss-nav-link {
        font-size: 0.76rem;
        padding: 6px 16px !important;
    }
}

.ss-nav-link:hover {
    color: #ffffff !important;
}

.ss-nav-link.active {
    color: var(--ss-accent-yellow) !important;
    font-weight: 600;
}

.ss-nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 12px;
    right: 12px;
    height: 3px;
    background-color: var(--ss-accent-yellow);
    border-radius: 2px;
}

@media (min-width: 1200px) {
    .ss-nav-link.active::after {
        left: 16px;
        right: 16px;
    }
}

.ss-header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
    white-space: nowrap;
}

.ss-btn-masuk {
    border: 1px solid rgba(255, 255, 255, 0.4);
    background: #080f0c;
    color: #ffffff !important;
    font-weight: 600;
    font-size: 0.85rem;
    padding: 6px 18px;
    border-radius: 6px;
    text-decoration: none !important;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
    line-height: 1.4;
}

.ss-btn-masuk:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #ffffff;
    color: #ffffff !important;
}

.ss-btn-daftar {
    background: #facc15;
    color: #000000 !important;
    font-weight: 700;
    font-size: 0.85rem;
    padding: 6px 20px;
    border-radius: 6px;
    text-decoration: none !important;
    transition: all 0.2s ease;
    border: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
    line-height: 1.4;
}

.ss-btn-daftar:hover {
    background: #eab308;
    color: #000000 !important;
}

/* HERO SECTION */
.ss-hero {
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: #ffffff;
    overflow: hidden;
}

.ss-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(10, 20, 16, 0.6) 0%, rgba(10, 20, 16, 0.75) 100%);
    z-index: 1;
}

.ss-hero-content {
    position: relative;
    z-index: 2;
}

.ss-script-tag {
    font-family: 'Brush Script MT', 'Segoe Script', cursive, sans-serif;
    font-size: 2.2rem;
    color: #facc15;
    transform: rotate(-5deg);
    display: inline-block;
}

/* INNER PAGE HERO (Not overly tall) */
.ss-inner-hero {
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: #ffffff;
    padding: 0px 0 0px 0;
    overflow: hidden;
    min-height: 330px;
    display: flex;
    align-items: center;
}

.ss-inner-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, rgba(8, 15, 12, 0.82) 0%, rgba(8, 15, 12, 0.45) 55%, rgba(8, 15, 12, 0.1) 100%);
    z-index: 1;
}

.ss-inner-hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
}

/* VISI MISI FULL WIDTH COLUMN */
.ss-visi-misi-col {
    position: relative;
    background-color: #0b1a13;
    background-image: linear-gradient(rgb(10 24 17 / 58%), rgb(10 24 17 / 48%)), url(/assets/sarangsemut/Tentang-03.png);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

/* BADGES */
.ss-badge-perdana {
    background: #84cc16;
    color: #0f241c;
    font-weight: 800;
    font-size: 0.75rem;
    letter-spacing: 0.05em;
    padding: 4px 12px;
    border-radius: 9999px;
    text-transform: uppercase;
    display: inline-block;
}

.ss-badge-event {
    background: #15803d;
    color: #ffffff;
    font-weight: 700;
    font-size: 0.7rem;
    padding: 3px 10px;
    border-radius: 9999px;
    text-transform: uppercase;
    display: inline-block;
}

.ss-badge-category {
    font-size: 0.75rem;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 9999px;
    text-transform: uppercase;
}

.ss-badge-category.pengumuman {
    background: #dcfce7;
    color: #15803d;
}

.ss-badge-category.event {
    background: #dbeafe;
    color: #1d4ed8;
}

.ss-badge-category.info-peserta {
    background: #fef3c7;
    color: #b45309;
}

.ss-badge-category.lokasi {
    background: #dcfce7;
    color: #15803d;
}

/* SECTION CARDS & CONTAINERS */
.ss-card {
    background: #ffffff;
    border-radius: 12px;
    border: 1px solid var(--ss-card-border);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
    overflow: hidden;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.ss-card:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
}

.ss-btn-primary {
    background: var(--ss-forest-green);
    color: #ffffff !important;
    font-weight: 700;
    border-radius: 6px;
    padding: 10px 22px;
    border: none;
    text-decoration: none !important;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.2s ease;
}

.ss-btn-primary:hover {
    background: var(--ss-forest-dark);
    color: #ffffff !important;
}

.ss-btn-yellow {
    background: var(--ss-accent-yellow);
    color: #000000 !important;
    font-weight: 700;
    border-radius: 6px;
    padding: 11px 24px;
    border: none;
    text-decoration: none !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.2s ease;
}

.ss-btn-yellow:hover {
    background: var(--ss-accent-hover);
    color: #000000 !important;
}

.ss-btn-outline {
    background: transparent;
    border: 1px solid #d1d5db;
    color: #374151 !important;
    font-weight: 600;
    border-radius: 6px;
    padding: 9px 20px;
    text-decoration: none !important;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.2s ease;
}

.ss-btn-outline:hover {
    background: #f3f4f6;
    border-color: #9ca3af;
    color: #111827 !important;
}

/* CTA BANNER BEFORE FOOTER */
.ss-cta-banner {
    background-size: cover;
    background-position: center;
    color: #ffffff;
    padding: 30px 0 30px 0;
    position: relative;
    margin: 0;
    border: none;
    overflow: hidden;
}

.ss-cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, rgba(8, 15, 12, 0.78) 0%, rgba(8, 15, 12, 0.45) 55%, rgba(8, 15, 12, 0.15) 100%);
    z-index: 1;
}

.ss-cta-content {
    position: relative;
    z-index: 2;
}

.ss-cta-script {
    font-family: 'Caveat', 'Satisfy', 'Brush Script MT', cursive;
    font-style: italic;
    font-weight: 500;
    font-size: 2.3rem;
    color: #facc15;
    text-shadow: 1px 2px 6px rgba(0, 0, 0, 0.75);
    line-height: 1.15;
    margin-bottom: 10px;
    display: inline-block;
    letter-spacing: 0.01em;
}

.ss-cta-sub {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.75rem;
    font-weight: 100;
    color: #ffffff;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.8);
    margin: 0;
    line-height: 1.45;
    max-width: 520px;
}

/* FOOTER */
.ss-footer {
    background-color: var(--ss-footer-dark);
    color: #94a3b8;
    padding: 20px 0 14px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 0.8rem;
    position: relative;
    z-index: 2;
    margin: 0;
    clear: both;
}

.ss-footer-main {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 12px 18px;
}

@media (min-width: 992px) {
    .ss-footer-main {
        flex-wrap: nowrap;
    }
}

.ss-footer-loc {
    white-space: nowrap;
    display: flex;
    align-items: center;
}

.ss-footer-loc-icon {
    color: #facc15;
    font-size: 1.25rem;
    margin-right: 14px;
    flex-shrink: 0;
}

.ss-footer-divider {
    width: 1px;
    height: 28px;
    background: rgba(255, 255, 255, 0.14);
    margin: 0 4px;
    flex-shrink: 0;
}

.ss-footer-links {
    white-space: nowrap;
    font-size: 0.76rem;
}

.ss-footer-nav-link {
    color: #94a3b8;
    text-decoration: none;
    font-size: 0.76rem;
    transition: color 0.2s ease;
}

.ss-footer-nav-link:hover {
    color: #ffffff;
}

.ss-footer-sep {
    color: rgba(255, 255, 255, 0.22);
    margin: 0 7px;
    font-size: 0.72rem;
    user-select: none;
}

.ss-footer a {
    color: #cbd5e1;
    text-decoration: none;
    transition: color 0.2s ease;
}

.ss-footer a:hover {
    color: var(--ss-accent-yellow);
}

.ss-footer .ss-social-link {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.3);
    background: transparent;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    margin-right: 5px;
    font-size: 0.75rem;
    transition: all 0.2s ease;
}

.ss-footer .ss-social-link:hover {
    background: var(--ss-accent-yellow);
    border-color: var(--ss-accent-yellow);
    color: #000000;
}

.ss-footer-copyright {
    padding-top: 14px;
    margin-top: 14px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 0.72rem;
    color: #64748b;
    line-height: 1.4;
}

/* AUTH & SIDEBAR LAYOUTS */
.ss-auth-left {
    position: relative;
    background-size: cover;
    background-position: center;
    color: #ffffff;
    min-height: 100%;
    padding: 60px 40px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.ss-auth-left-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(10, 20, 16, 0.7) 0%, rgba(10, 20, 16, 0.85) 100%);
    z-index: 1;
}

.ss-auth-left-content {
    position: relative;
    z-index: 2;
}

.ss-card {
    background: #ffffff;
    border-radius: 12px;
    border: 1px solid var(--ss-card-border);
}

.ss-sidebar-menu-card {
    background: #ffffff;
    border-radius: 12px;
    border: 1px solid var(--ss-card-border);
    overflow: hidden;
}

.ss-sidebar-menu-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 13px 20px;
    color: #374151;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none !important;
    border-bottom: 1px solid #f3f4f6;
    transition: all 0.15s ease;
}

.ss-sidebar-menu-item:last-child {
    border-bottom: none;
}

.ss-sidebar-menu-item:hover {
    background: #f8fafc;
    color: var(--ss-forest-green);
}

.ss-sidebar-menu-item.active {
    background: #e2f1e8;
    color: #15803d;
    font-weight: 700;
    border-left: 4px solid #15803d;
}

/* FORM CONTROLS */
.ss-form-control {
    border: 1px solid #d1d5db;
    border-radius: 8px;
    padding: 10px 14px;
    font-size: 0.9rem;
    width: 100%;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.ss-form-control:focus {
    border-color: var(--ss-forest-green);
    outline: none;
    box-shadow: 0 0 0 3px rgba(21, 128, 61, 0.15);
}

.ss-input-group {
    position: relative;
}

.ss-input-group-icon {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: #9ca3af;
    font-size: 1rem;
    pointer-events: none;
}

.ss-input-group .ss-form-control.has-icon {
    padding-left: 42px;
}

/* RESPONSIVE TWEAKS */
@media (max-width: 991px) {
    .ss-hero {
        padding: 60px 0 80px 0;
    }

    .ss-script-tag {
        font-size: 1.8rem;
    }
}

/* ============================================================
   RESPONSIVE MOBILE ENHANCEMENTS (Scoped to Mobile Breakpoints)
   Strictly preserves Desktop (> 991px) layouts completely untouched
   ============================================================ */

/* Mobile Hamburger Toggle */
.ss-mobile-toggle {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 6px;
    color: #ffffff;
    width: 34px;
    height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1rem;
    transition: all 0.2s ease;
    padding: 0;
    margin-left: 6px;
    flex-shrink: 0;
}

.ss-mobile-toggle:hover,
.ss-mobile-toggle:focus {
    background: rgba(255, 255, 255, 0.1);
    color: var(--ss-accent-yellow);
    border-color: var(--ss-accent-yellow);
    outline: none;
}

.ss-mobile-menu {
    display: none;
    background-color: #0b1510;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
    animation: ssFadeDown 0.2s ease;
}

.ss-mobile-menu.show {
    display: block;
}

@keyframes ssFadeDown {
    from {
        opacity: 0;
        transform: translateY(-8px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.ss-mobile-nav-link {
    color: #cbd5e1;
    text-decoration: none !important;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    padding: 10px 14px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    transition: all 0.2s ease;
}

.ss-mobile-nav-link:hover {
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
}

.ss-mobile-nav-link.active {
    background: rgba(250, 204, 21, 0.12);
    color: var(--ss-accent-yellow);
    border-left: 3px solid var(--ss-accent-yellow);
}

@media (min-width: 992px) {
    .ss-mobile-toggle,
    .ss-mobile-menu {
        display: none !important;
    }
}

@media (max-width: 575.98px) {
    .ss-nav-brand img {
        height: 32px !important;
    }
    .ss-btn-masuk, .ss-btn-daftar {
        padding: 5px 10px !important;
        font-size: 0.74rem !important;
    }
}

/* Event Meta Row (Desktop default, Mobile wrap) */
.ss-event-meta-row {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: nowrap;
    border-color: #e2e8f0 !important;
    gap: 0;
}

.ss-event-meta-divider {
    width: 1px;
    height: 38px;
    background-color: #cbd5e1;
    flex-shrink: 0;
    margin: 0 22px;
}

@media (max-width: 767.98px) {
    .ss-event-meta-row {
        flex-wrap: wrap !important;
        gap: 14px 24px !important;
    }
    .ss-event-meta-divider {
        display: none !important;
    }
}

@media (max-width: 575.98px) {
    .ss-event-action-btns {
        flex-direction: column !important;
        align-items: stretch !important;
        gap: 10px !important;
    }
    .ss-event-action-btns .btn {
        width: 100% !important;
        text-align: center !important;
    }
}

/* News Cards & Filters */
.ss-news-card-thumb {
    width: 150px;
    height: 120px;
    border-radius: 10px;
    flex-shrink: 0;
}

@media (max-width: 575.98px) {
    .ss-news-card-inner {
        flex-direction: column !important;
        gap: 14px !important;
    }
    .ss-news-card-thumb {
        width: 100% !important;
        height: 180px !important;
    }
    .ss-article-card {
        padding: 20px 16px !important;
    }
}

.ss-category-pills-wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

@media (max-width: 767.98px) {
    .ss-category-pills-wrap {
        flex-wrap: nowrap !important;
        overflow-x: auto !important;
        padding-bottom: 6px !important;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }
    .ss-category-pills-wrap::-webkit-scrollbar {
        display: none;
    }
    .ss-category-pills-wrap a {
        flex-shrink: 0 !important;
    }
}

/* Footer Responsiveness */
@media (max-width: 767.98px) {
    .ss-footer-main {
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 16px !important;
    }
    .ss-footer-links {
        white-space: normal !important;
        line-height: 1.8 !important;
    }
    .ss-footer-sep {
        margin: 0 4px !important;
    }
}

/* ============================================================
   SARANG SEMUT PARTICIPANT DASHBOARD (DASBOR PESERTA)
   Centralized Scoped Styles
   ============================================================ */

.ss-dash-page {
    background-color: #f8fafc;
    min-height: calc(100vh - 200px);
    padding: 24px 0 48px 0;
}

.ss-dash-breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: #64748b;
    margin-bottom: 14px;
}

.ss-dash-breadcrumb a {
    color: #475569;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: color 0.15s;
}

.ss-dash-breadcrumb a:hover {
    color: #0f172a;
}

.ss-dash-breadcrumb .sep {
    color: #cbd5e1;
    font-size: 0.75rem;
}

.ss-dash-breadcrumb .current {
    color: #0f172a;
    font-weight: 600;
}

/* Sidebar Styles */
.ss-dash-sidebar-wrap {
    width: 250px;
    min-width: 250px;
    flex-shrink: 0;
}

.ss-dash-sidebar-card {
    background: #ffffff;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    border: 1px solid #e2e8f0;
}

.ss-dash-sidebar-header {
    background-color: #0a1727;
    padding: 24px 16px 20px 16px;
    text-align: center;
}

.ss-dash-sidebar-header img {
    max-height: 52px;
    width: auto;
    object-fit: contain;
}

.ss-dash-nav-list {
    display: flex;
    flex-direction: column;
    padding: 8px 0;
    margin: 0;
    list-style: none;
}

.ss-dash-nav-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 11px 18px;
    color: #334155;
    font-size: 0.85rem;
    font-weight: 500;
    text-decoration: none;
    border-left: 3px solid transparent;
    transition: all 0.18s ease;
}

.ss-dash-nav-item i {
    width: 18px;
    font-size: 0.95rem;
    color: #64748b;
    text-align: center;
    transition: color 0.18s ease;
}

.ss-dash-nav-item:hover {
    background-color: #f8fafc;
    color: #0f172a;
}

.ss-dash-nav-item:hover i {
    color: #0f172a;
}

.ss-dash-nav-item.active {
    background-color: #e8f5e9;
    color: #166534;
    font-weight: 700;
    border-left-color: #16a34a;
}

.ss-dash-nav-item.active i {
    color: #16a34a;
}

.ss-dash-nav-badge {
    margin-left: auto;
    background-color: #ef4444;
    color: #ffffff;
    font-size: 0.65rem;
    font-weight: 700;
    padding: 2px 6px;
    border-radius: 9999px;
    line-height: 1.2;
}

/* Sidebar Promo Vertical Card */
.ss-dash-promo-card {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    margin-top: 20px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    background-color: #0b1a2d;
}

.ss-dash-promo-card img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.ss-dash-promo-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px 18px 20px 18px;
    background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.85) 100%);
    text-align: left;
}

.ss-dash-promo-text {
    font-family: 'Satisfy', 'Caveat', cursive, sans-serif;
    color: #ffffff;
    font-size: 1.75rem;
    line-height: 1.15;
    text-shadow: 0 2px 10px rgba(0,0,0,0.8);
    transform: rotate(-3deg);
    display: inline-block;
}

/* Hero Welcome Banner */
.ss-dash-hero {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    min-height: 190px;
    background-size: cover;
    background-position: center right;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    display: flex;
    align-items: center;
    margin-bottom: 24px;
}

.ss-dash-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(6, 18, 32, 0.92) 0%, rgba(6, 18, 32, 0.72) 45%, rgba(6, 18, 32, 0.2) 100%);
    z-index: 1;
}

.ss-dash-hero-content {
    position: relative;
    z-index: 2;
    padding: 28px 32px;
    width: 100%;
}

.ss-dash-hero-welcome {
    font-size: 0.82rem;
    color: #93c5fd;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin-bottom: 2px;
}

.ss-dash-hero-title {
    color: #ffffff;
    font-size: 1.85rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 6px;
}

.ss-dash-hero-sub {
    color: #ffffff;
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 4px;
}

.ss-dash-hero-desc {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.8rem;
    margin-bottom: 0;
    max-width: 480px;
    line-height: 1.4;
}

/* Hero Right Brand Graphic on Mockup */
.ss-dash-hero-brand {
    position: absolute;
    right: 28px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.ss-dash-hero-brand img {
    height: 54px;
    width: auto;
    filter: drop-shadow(0 2px 8px rgba(0,0,0,0.6));
    margin-bottom: 8px;
}

.ss-dash-wood-sign {
    background: #8b4513;
    background: linear-gradient(135deg, #78350f 0%, #451a03 100%);
    color: #fef08a;
    font-family: 'Satisfy', 'Caveat', cursive, sans-serif;
    font-size: 1.15rem;
    padding: 6px 14px;
    border-radius: 6px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.4), inset 0 1px 1px rgba(255,255,255,0.2);
    border: 1px solid #92400e;
    transform: rotate(-2deg);
    display: inline-block;
    white-space: nowrap;
}

/* Stat Cards */
.ss-dash-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-top: 18px;
}

.ss-dash-stat-card {
    border-radius: 12px;
    padding: 16px 18px;
    display: flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
    transition: transform 0.18s ease, box-shadow 0.18s ease;
    border: 1px solid transparent;
}

.ss-dash-stat-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0,0,0,0.06);
}

.ss-dash-stat-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
    flex-shrink: 0;
}

.ss-dash-stat-info {
    flex: 1;
    min-width: 0;
}

.ss-dash-stat-num {
    font-size: 1.65rem;
    font-weight: 800;
    line-height: 1;
    color: #0f172a;
}

.ss-dash-stat-label {
    font-size: 0.74rem;
    color: #64748b;
    font-weight: 500;
    margin-top: 3px;
    white-space: nowrap;
}

.ss-dash-stat-arrow {
    font-size: 0.8rem;
    color: #94a3b8;
    margin-left: auto;
}

/* Stat Card Color Themes */
.ss-dash-stat-blue {
    background-color: #f0f7ff;
    border-color: #e0f2fe;
}
.ss-dash-stat-blue .ss-dash-stat-icon {
    background-color: #dbeafe;
    color: #2563eb;
}

.ss-dash-stat-green {
    background-color: #f0fdf4;
    border-color: #dcfce7;
}
.ss-dash-stat-green .ss-dash-stat-icon {
    background-color: #dcfce7;
    color: #16a34a;
}

.ss-dash-stat-yellow {
    background-color: #fffbeb;
    border-color: #fef3c7;
}
.ss-dash-stat-yellow .ss-dash-stat-icon {
    background-color: #fef3c7;
    color: #d97706;
}

.ss-dash-stat-red {
    background-color: #fef2f2;
    border-color: #fee2e2;
}
.ss-dash-stat-red .ss-dash-stat-icon {
    background-color: #fee2e2;
    color: #dc2626;
}

/* Card General Wrapper */
.ss-dash-card {
    background: #ffffff;
    border-radius: 14px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.03);
    padding: 20px 22px;
    margin-top: 20px;
}

.ss-dash-card-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
}

.ss-dash-card-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: #0f172a;
    margin: 0;
}

.ss-dash-card-link {
    font-size: 0.8rem;
    font-weight: 600;
    color: #2563eb;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    transition: color 0.15s;
}

.ss-dash-card-link:hover {
    color: #1d4ed8;
}

/* Tabs Underline */
.ss-dash-tabs {
    display: flex;
    border-bottom: 1px solid #e2e8f0;
    gap: 20px;
    margin-bottom: 16px;
}

.ss-dash-tab {
    font-size: 0.84rem;
    font-weight: 600;
    color: #64748b;
    padding-bottom: 10px;
    border-bottom: 2px solid transparent;
    cursor: pointer;
    background: none;
    border-top: 0;
    border-left: 0;
    border-right: 0;
    transition: all 0.15s;
    outline: none;
}

.ss-dash-tab:hover {
    color: #1e293b;
}

.ss-dash-tab.active {
    color: #2563eb;
    border-bottom-color: #2563eb;
}

/* Event List Items in Event Saya */
.ss-dash-event-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 14px 16px;
    background: #ffffff;
    border: 1px solid #f1f5f9;
    border-radius: 12px;
    margin-bottom: 12px;
    text-decoration: none;
    transition: all 0.18s ease;
}

.ss-dash-event-item:hover {
    border-color: #cbd5e1;
    background: #f8fafc;
    transform: translateX(2px);
}

.ss-dash-event-thumb {
    width: 96px;
    height: 72px;
    border-radius: 8px;
    object-fit: cover;
    flex-shrink: 0;
}

.ss-dash-event-body {
    flex: 1;
    min-width: 0;
}

.ss-dash-status-pill {
    display: inline-block;
    font-size: 0.68rem;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 9999px;
    margin-bottom: 4px;
}

.ss-dash-status-pill.registered {
    background-color: #16a34a;
    color: #ffffff;
}

.ss-dash-status-pill.pending {
    background-color: #f59e0b;
    color: #ffffff;
}

.ss-dash-status-pill.completed {
    background-color: #64748b;
    color: #ffffff;
}

.ss-dash-event-title {
    font-size: 0.94rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 2px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.ss-dash-event-subtitle {
    font-size: 0.78rem;
    color: #64748b;
    margin-bottom: 6px;
}

.ss-dash-event-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 14px;
    font-size: 0.74rem;
    color: #64748b;
}

.ss-dash-event-meta span {
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.ss-dash-event-meta i {
    color: #94a3b8;
}

.ss-dash-event-arrow {
    color: #cbd5e1;
    font-size: 0.9rem;
    margin-left: 8px;
    flex-shrink: 0;
}

/* Recommended Events Grid */
.ss-dash-recom-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.ss-dash-recom-card {
    background: #ffffff;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 2px 8px rgba(0,0,0,0.02);
    transition: transform 0.18s ease;
}

.ss-dash-recom-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0,0,0,0.06);
}

.ss-dash-recom-img-wrap {
    position: relative;
    width: 100%;
    height: 120px;
    background: #f1f5f9;
}

.ss-dash-recom-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ss-dash-recom-fav {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 28px;
    height: 28px;
    background: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ef4444;
    font-size: 0.75rem;
    box-shadow: 0 2px 6px rgba(0,0,0,0.15);
    border: none;
    cursor: pointer;
}

.ss-dash-recom-body {
    padding: 12px 14px 14px 14px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.ss-dash-recom-title {
    font-size: 0.88rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 6px;
    line-height: 1.3;
}

.ss-dash-recom-meta {
    font-size: 0.72rem;
    color: #64748b;
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-bottom: 12px;
}

.ss-dash-recom-meta span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.ss-dash-recom-btn {
    margin-top: auto;
    background-color: #facc15;
    color: #0f172a;
    font-size: 0.8rem;
    font-weight: 700;
    padding: 8px 12px;
    border-radius: 8px;
    text-align: center;
    text-decoration: none;
    display: block;
    transition: background-color 0.15s;
    border: none;
}

.ss-dash-recom-btn:hover {
    background-color: #eab308;
    color: #000000;
}

/* Profil Saya Widget */
.ss-dash-profile-top {
    display: flex;
    align-items: center;
    gap: 14px;
    padding-bottom: 16px;
    border-bottom: 1px solid #f1f5f9;
    margin-bottom: 14px;
}

.ss-dash-avatar {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #e2e8f0;
    flex-shrink: 0;
    background: #e2e8f0;
}

.ss-dash-profile-meta {
    flex: 1;
    min-width: 0;
}

.ss-dash-profile-name {
    font-size: 0.95rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 1px;
}

.ss-dash-profile-email {
    font-size: 0.75rem;
    color: #64748b;
    margin: 0;
    word-break: break-all;
}

.ss-dash-profile-edit {
    color: #64748b;
    font-size: 0.85rem;
    padding: 6px;
    border-radius: 6px;
    text-decoration: none;
    transition: all 0.15s;
}

.ss-dash-profile-edit:hover {
    color: #0f172a;
    background: #f1f5f9;
}

.ss-dash-profile-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.ss-dash-profile-row {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.ss-dash-profile-row i {
    width: 18px;
    font-size: 0.85rem;
    color: #94a3b8;
    margin-top: 3px;
    text-align: center;
}

.ss-dash-profile-row-info {
    display: flex;
    flex-direction: column;
}

.ss-dash-profile-row-label {
    font-size: 0.7rem;
    color: #94a3b8;
    font-weight: 500;
}

.ss-dash-profile-row-val {
    font-size: 0.82rem;
    font-weight: 600;
    color: #1e293b;
}

/* Notifikasi Terbaru Widget */
.ss-dash-notif-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.ss-dash-notif-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.ss-dash-notif-icon {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    flex-shrink: 0;
}

.ss-dash-notif-icon.green {
    background-color: #dcfce7;
    color: #16a34a;
}

.ss-dash-notif-icon.blue {
    background-color: #dbeafe;
    color: #2563eb;
}

.ss-dash-notif-icon.amber {
    background-color: #fef3c7;
    color: #d97706;
}

.ss-dash-notif-content {
    flex: 1;
    min-width: 0;
}

.ss-dash-notif-title {
    font-size: 0.82rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 2px;
}

.ss-dash-notif-msg {
    font-size: 0.74rem;
    color: #475569;
    line-height: 1.35;
    margin-bottom: 3px;
}

.ss-dash-notif-time {
    font-size: 0.68rem;
    color: #94a3b8;
}

/* Responsive Overrides */
@media (max-width: 991.98px) {
    .ss-dash-layout-flex {
        flex-direction: column !important;
    }
    .ss-dash-sidebar-wrap {
        width: 100% !important;
    }
    .ss-dash-stats-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
    .ss-dash-hero-brand {
        display: none !important;
    }
}

@media (max-width: 575.98px) {
    .ss-dash-stats-grid {
        grid-template-columns: 1fr !important;
    }
    .ss-dash-recom-grid {
        grid-template-columns: 1fr !important;
    }
    .ss-dash-event-item {
        flex-direction: column;
        align-items: flex-start;
    }
    .ss-dash-event-thumb {
        width: 100%;
        height: 120px;
    }
    .ss-dash-hero-content {
        padding: 20px;
    }
    .ss-dash-hero-title {
        font-size: 1.45rem;
    }
}

/* ============================================================
   EVENT SAYA (PARTICIPANT MY EVENTS)
   Scoped Centralized Styles
   ============================================================ */

.ss-myevents-tabs-wrap {
    background: #ffffff;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    padding: 2px 14px;
    margin-top: 18px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.02);
    overflow-x: auto;
    scrollbar-width: none;
}
.ss-myevents-tabs-wrap::-webkit-scrollbar {
    display: none;
}

.ss-myevents-tabs-list {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0;
    padding: 0;
    list-style: none;
    white-space: nowrap;
}

.ss-myevents-tab-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 16px;
    font-size: 0.84rem;
    font-weight: 600;
    color: #64748b;
    background: none;
    border: none;
    border-bottom: 2px solid transparent;
    cursor: pointer;
    transition: all 0.15s ease;
    outline: none;
}

.ss-myevents-tab-btn i {
    font-size: 0.95rem;
}

.ss-myevents-tab-btn:hover {
    color: #1e293b;
}

.ss-myevents-tab-btn.active {
    color: #2563eb;
    border-bottom-color: #2563eb;
    font-weight: 700;
}

/* Search and Sort Bar */
.ss-myevents-filter-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-top: 16px;
    margin-bottom: 18px;
}

.ss-myevents-search-wrap {
    position: relative;
    flex: 1;
    max-width: 440px;
}

.ss-myevents-search-input {
    width: 100%;
    background-color: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 9px 14px 9px 38px;
    font-size: 0.82rem;
    color: #1e293b;
    outline: none;
    transition: border-color 0.15s, box-shadow 0.15s;
}

.ss-myevents-search-input:focus {
    border-color: #93c5fd;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.ss-myevents-search-icon {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: #94a3b8;
    font-size: 0.85rem;
    pointer-events: none;
}

.ss-myevents-sort-wrap {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.82rem;
    color: #64748b;
    flex-shrink: 0;
}

.ss-myevents-sort-select {
    background-color: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 7px 28px 7px 12px;
    font-size: 0.82rem;
    color: #1e293b;
    font-weight: 500;
    cursor: pointer;
    outline: none;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='%2364748b'%3E%3Cpath fill-rule='evenodd' d='M5.293 7.293a1 1 0 011.414 0L10 10.586l3.293-3.293a1 1 0 111.414 1.414l-4 4a1 1 0 01-1.414 0l-4-4a1 1 0 010-1.414z' clip-rule='evenodd'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 8px center;
    background-size: 16px 16px;
}

/* My Events Card */
.ss-myevents-card {
    background: #ffffff;
    border-radius: 14px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.03);
    padding: 18px 20px;
    margin-bottom: 16px;
    display: flex;
    gap: 20px;
    align-items: stretch;
    transition: all 0.2s ease;
}

.ss-myevents-card:hover {
    box-shadow: 0 6px 22px rgba(0, 0, 0, 0.06);
    border-color: #cbd5e1;
}

.ss-myevents-thumb-wrap {
    width: 210px;
    min-width: 210px;
    height: 155px;
    border-radius: 10px;
    overflow: hidden;
    background: #f1f5f9;
    flex-shrink: 0;
}

.ss-myevents-thumb-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.ss-myevents-info-col {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
}

.ss-myevents-badge {
    display: inline-block;
    align-self: flex-start;
    font-size: 0.68rem;
    font-weight: 700;
    padding: 2px 10px;
    border-radius: 9999px;
    margin-bottom: 4px;
    text-transform: capitalize;
}

.ss-myevents-badge.upcoming {
    background-color: #16a34a;
    color: #ffffff;
}

.ss-myevents-badge.completed {
    background-color: #475569;
    color: #ffffff;
}

.ss-myevents-badge.ongoing {
    background-color: #d97706;
    color: #ffffff;
}

.ss-myevents-badge.cancelled {
    background-color: #dc2626;
    color: #ffffff;
}

.ss-myevents-card-title {
    font-size: 1.08rem;
    font-weight: 800;
    color: #0f172a;
    line-height: 1.3;
    margin-bottom: 1px;
}

.ss-myevents-card-sub {
    font-size: 0.78rem;
    color: #64748b;
    margin-bottom: 10px;
}

.ss-myevents-meta-list {
    display: flex;
    flex-direction: column;
    gap: 4px;
    font-size: 0.74rem;
    color: #475569;
}

.ss-myevents-meta-row {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.ss-myevents-meta-row i {
    width: 16px;
    text-align: center;
    color: #94a3b8;
    font-size: 0.8rem;
}

/* Action Right Column */
.ss-myevents-action-col {
    width: 230px;
    min-width: 230px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.ss-myevents-alert-box {
    border-radius: 10px;
    padding: 9px 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    position: relative;
}

.ss-myevents-alert-box.green {
    background-color: #f0fdf4;
    border: 1px solid #dcfce7;
}

.ss-myevents-alert-box.green .ss-alert-icon {
    background-color: #dcfce7;
    color: #16a34a;
}

.ss-myevents-alert-box.slate {
    background-color: #f8fafc;
    border: 1px solid #e2e8f0;
}

.ss-myevents-alert-box.slate .ss-alert-icon {
    background-color: #e2e8f0;
    color: #475569;
}

.ss-alert-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.82rem;
    flex-shrink: 0;
}

.ss-alert-text {
    flex: 1;
    min-width: 0;
}

.ss-alert-title {
    font-size: 0.78rem;
    font-weight: 700;
    color: #0f172a;
    line-height: 1.2;
}

.ss-alert-sub {
    font-size: 0.68rem;
    color: #64748b;
    line-height: 1.2;
    margin-top: 2px;
}

.ss-alert-more {
    color: #94a3b8;
    cursor: pointer;
    font-size: 0.85rem;
    padding: 2px;
}

/* Buttons */
.ss-myevents-btn-blue {
    background-color: #2563eb;
    color: #ffffff;
    font-size: 0.78rem;
    font-weight: 700;
    padding: 8px 0;
    border-radius: 8px;
    text-align: center;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-bottom: 6px;
    border: none;
    transition: background 0.15s;
}

.ss-myevents-btn-blue:hover {
    background-color: #1d4ed8;
    color: #ffffff;
}

.ss-myevents-btn-outline {
    background-color: #ffffff;
    border: 1px solid #cbd5e1;
    color: #1e293b;
    font-size: 0.78rem;
    font-weight: 700;
    padding: 7px 0;
    border-radius: 8px;
    text-align: center;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    transition: all 0.15s;
}

.ss-myevents-btn-outline:hover {
    background-color: #f8fafc;
    border-color: #94a3b8;
    color: #0f172a;
}

/* Pagination Bar */
.ss-myevents-pagi-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 20px;
    padding-top: 14px;
    border-top: 1px solid #e2e8f0;
    font-size: 0.82rem;
    color: #64748b;
}

.ss-myevents-pagi-controls {
    display: flex;
    align-items: center;
    gap: 6px;
}

.ss-myevents-pagi-btn {
    width: 32px;
    height: 32px;
    border-radius: 6px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #e2e8f0;
    background: #ffffff;
    color: #475569;
    font-size: 0.78rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.15s;
}

.ss-myevents-pagi-btn.active {
    background-color: #2563eb;
    border-color: #2563eb;
    color: #ffffff;
}

.ss-myevents-pagi-btn:hover:not(.active) {
    background-color: #f1f5f9;
    color: #0f172a;
}

/* Responsive */
@media (max-width: 991.98px) {
    .ss-myevents-card {
        flex-direction: column;
    }
    .ss-myevents-thumb-wrap {
        width: 100%;
        height: 180px;
    }
    .ss-myevents-action-col {
        width: 100%;
        margin-top: 12px;
    }
}

/* ============================================================
   PENDAFTARAN SAYA (REGISTRATION FORM) STYLES
   ============================================================ */

/* Stepper Card */
.ss-reg-stepper-card {
    background: #ffffff;
    border-radius: 14px;
    border: 1px solid #e2e8f0;
    padding: 16px 28px;
    margin-bottom: 24px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
}

.ss-reg-stepper {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}

.ss-reg-step {
    display: flex;
    align-items: center;
    gap: 12px;
}

.ss-reg-step-circle {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.88rem;
    flex-shrink: 0;
}

.ss-reg-step-circle.active {
    background-color: #2563eb;
    color: #ffffff;
}

.ss-reg-step-circle.inactive {
    background-color: #f1f5f9;
    color: #475569;
}

.ss-reg-step-info {
    display: flex;
    flex-direction: column;
}

.ss-reg-step-title {
    font-size: 0.88rem;
    font-weight: 700;
    color: #0f172a;
    line-height: 1.2;
}

.ss-reg-step-title.muted {
    color: #334155;
}

.ss-reg-step-sub {
    font-size: 0.74rem;
    color: #64748b;
    line-height: 1.2;
}

.ss-reg-step-sub.muted {
    color: #94a3b8;
}

.ss-reg-step-arrow {
    color: #94a3b8;
    font-size: 0.78rem;
    display: flex;
    align-items: center;
}

/* Two Column Flex Layout */
.ss-reg-layout-flex {
    display: flex;
    align-items: flex-start;
    gap: 24px;
}

/* Left Column Form Card */
.ss-reg-form-card {
    background: #ffffff;
    border-radius: 14px;
    border: 1px solid #e2e8f0;
    padding: 28px 32px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.02);
}

.ss-reg-title {
    font-size: 1.22rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 4px;
}

.ss-reg-desc {
    font-size: 0.82rem;
    color: #64748b;
    margin-bottom: 24px;
    line-height: 1.4;
}

/* Form Rows (Two Column Label + Input) */
.ss-reg-group {
    display: flex;
    align-items: center;
    margin-bottom: 16px;
    gap: 16px;
}

.ss-reg-label {
    width: 210px;
    min-width: 210px;
    font-size: 0.82rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 0;
}

.ss-reg-label .req {
    color: #ef4444;
    font-weight: 700;
    margin-left: 2px;
}

.ss-reg-label .opt {
    color: #64748b;
    font-weight: 400;
    font-size: 0.76rem;
    margin-left: 2px;
}

.ss-reg-field-wrap {
    flex: 1;
    min-width: 0;
}

.ss-reg-input {
    width: 100%;
    height: 42px;
    border: 1px solid #cbd5e1;
    border-radius: 8px;
    padding: 0 14px;
    font-size: 0.84rem;
    color: #0f172a;
    background: #ffffff;
    transition: all 0.15s;
}

.ss-reg-input:focus {
    border-color: #2563eb;
    outline: none;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.ss-reg-input::placeholder {
    color: #94a3b8;
    font-size: 0.82rem;
}

/* Input Group with Prefix (+62) */
.ss-reg-input-group {
    display: flex;
    width: 100%;
}

.ss-reg-input-prefix {
    background: #f8fafc;
    border: 1px solid #cbd5e1;
    border-right: none;
    border-radius: 8px 0 0 8px;
    padding: 0 14px;
    font-size: 0.84rem;
    font-weight: 600;
    color: #334155;
    display: flex;
    align-items: center;
}

.ss-reg-input-group .ss-reg-input {
    border-radius: 0 8px 8px 0;
}

/* Custom Select Dropdown with Icons */
.ss-reg-select-wrap {
    position: relative;
    width: 100%;
}

.ss-reg-select {
    appearance: none;
    -webkit-appearance: none;
    width: 100%;
    height: 42px;
    border: 1px solid #cbd5e1;
    border-radius: 8px;
    padding: 0 36px 0 36px;
    font-size: 0.84rem;
    color: #0f172a;
    background: #ffffff;
    cursor: pointer;
    transition: all 0.15s;
}

.ss-reg-select:focus {
    border-color: #2563eb;
    outline: none;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.ss-reg-select-icon-left {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: #64748b;
    font-size: 0.85rem;
    pointer-events: none;
}

.ss-reg-select-icon-right {
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: #64748b;
    font-size: 0.78rem;
    pointer-events: none;
}

/* Section Title & Divider */
.ss-reg-section-title {
    font-size: 1.05rem;
    font-weight: 800;
    color: #0f172a;
    margin-top: 24px;
    margin-bottom: 18px;
}

/* Info Notice Box */
.ss-reg-info-box {
    background: #eff6ff;
    border: 1px solid #dbeafe;
    border-radius: 10px;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 24px;
    margin-bottom: 24px;
}

.ss-reg-info-box i {
    color: #2563eb;
    font-size: 1.15rem;
    flex-shrink: 0;
}

.ss-reg-info-box span {
    font-size: 0.78rem;
    color: #1e40af;
    line-height: 1.4;
}

/* Actions Row */
.ss-reg-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.ss-reg-btn-back {
    background: #ffffff;
    border: 1px solid #cbd5e1;
    border-radius: 8px;
    padding: 10px 24px;
    font-size: 0.84rem;
    font-weight: 700;
    color: #1e293b;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.15s;
}

.ss-reg-btn-back:hover {
    background: #f8fafc;
    border-color: #94a3b8;
    color: #0f172a;
}

.ss-reg-btn-submit {
    background: #2563eb;
    border: none;
    border-radius: 8px;
    padding: 11px 28px;
    font-size: 0.84rem;
    font-weight: 700;
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    transition: background 0.15s;
}

.ss-reg-btn-submit:hover {
    background: #1d4ed8;
    color: #ffffff;
}

/* Right Column */
.ss-reg-right-col {
    width: 320px;
    min-width: 320px;
    flex-shrink: 0;
}

.ss-reg-event-card {
    background: #ffffff;
    border-radius: 14px;
    border: 1px solid #e2e8f0;
    padding: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.02);
}

.ss-reg-event-head {
    font-size: 1.02rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 14px;
}

.ss-reg-thumb-wrap {
    width: 100%;
    height: 145px;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 14px;
    background: #f1f5f9;
}

.ss-reg-thumb-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ss-reg-event-title {
    font-size: 0.98rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 2px;
    line-height: 1.3;
}

.ss-reg-event-sub {
    font-size: 0.78rem;
    color: #64748b;
    margin-bottom: 14px;
}

.ss-reg-meta-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
    font-size: 0.75rem;
    color: #475569;
}

.ss-reg-meta-row {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.ss-reg-meta-row i {
    width: 16px;
    text-align: center;
    color: #64748b;
    font-size: 0.82rem;
}

/* Data Anda Aman Card */
.ss-reg-security-card {
    background: #f0fdf4;
    border: 1px solid #dcfce7;
    border-radius: 12px;
    padding: 16px;
    display: flex;
    gap: 12px;
    align-items: flex-start;
    margin-top: 16px;
}

.ss-reg-security-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #dcfce7;
    color: #16a34a;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.88rem;
    flex-shrink: 0;
}

.ss-reg-security-text {
    flex: 1;
    min-width: 0;
}

.ss-reg-security-title {
    font-size: 0.85rem;
    font-weight: 800;
    color: #15803d;
    margin-bottom: 3px;
}

.ss-reg-security-desc {
    font-size: 0.72rem;
    color: #166534;
    line-height: 1.4;
    margin-bottom: 0;
}

/* Responsive Overrides */
@media (max-width: 991.98px) {
    .ss-reg-layout-flex {
        flex-direction: column;
    }
    .ss-reg-right-col {
        width: 100%;
        min-width: 100%;
    }
    .ss-reg-group {
        flex-direction: column;
        align-items: flex-start;
        gap: 6px;
    }
    .ss-reg-label {
        width: 100%;
        min-width: 100%;
    }
}

/* Stepper Status Indicators */
.ss-reg-step-circle.completed {
    background-color: #10b981;
    color: #ffffff;
}

/* Step 2: Review Box Styles */
.ss-reg-review-section {
    margin-bottom: 20px;
}

.ss-reg-review-head {
    font-size: 0.92rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.ss-reg-review-head i {
    color: #2563eb;
    font-size: 0.95rem;
}

.ss-reg-review-box {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    padding: 12px 18px;
}

.ss-reg-review-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px dashed #e2e8f0;
    font-size: 0.82rem;
}

.ss-reg-review-row:last-child {
    border-bottom: none;
}

.ss-reg-review-label {
    color: #64748b;
    font-weight: 600;
}

.ss-reg-review-val {
    color: #0f172a;
    font-weight: 700;
    text-align: right;
}

/* Step 3: Success Box Styles */
.ss-reg-success-box {
    text-align: center;
    padding: 32px 16px;
}

.ss-reg-success-icon-wrap {
    width: 76px;
    height: 76px;
    border-radius: 50%;
    background: #dcfce7;
    color: #16a34a;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 2.3rem;
    margin-bottom: 18px;
    box-shadow: 0 4px 16px rgba(22, 163, 74, 0.15);
}

.ss-reg-success-title {
    font-size: 1.35rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 6px;
}

.ss-reg-success-sub {
    font-size: 0.85rem;
    color: #64748b;
    margin-bottom: 24px;
    line-height: 1.45;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
}

.ss-reg-success-card {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 20px 24px;
    text-align: left;
    margin: 0 auto 28px auto;
    max-width: 500px;
}

.ss-reg-success-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px dashed #e2e8f0;
    font-size: 0.82rem;
}

.ss-reg-success-row:last-child {
    border-bottom: none;
}

.ss-reg-success-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

/* ============================================================
   SARANG SEMUT TIKET & QR CODE STYLES (Scoped to .ss-site)
   ============================================================ */

.ss-ticket-topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 22px;
}

.ss-ticket-back-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.84rem;
    font-weight: 700;
    color: #2563eb;
    text-decoration: none;
    transition: all 0.15s ease;
}

.ss-ticket-back-link:hover {
    color: #1d4ed8;
    text-decoration: underline;
    transform: translateX(-2px);
}

.ss-ticket-download-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #ffffff;
    border: 1px solid #cbd5e1;
    border-radius: 8px;
    padding: 7px 16px;
    font-size: 0.82rem;
    font-weight: 700;
    color: #1e293b;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
}

.ss-ticket-download-btn:hover {
    background: #f8fafc;
    border-color: #94a3b8;
    color: #0f172a;
}

/* Ticket Layout Flex */
.ss-ticket-layout-flex {
    display: flex;
    align-items: flex-start;
    gap: 24px;
}

.ss-ticket-main-col {
    flex: 1 1 0%;
    min-width: 0;
}

.ss-ticket-side-col {
    width: 320px;
    min-width: 320px;
    flex-shrink: 0;
}

/* E-Ticket Card (Physical Boarding Pass Aesthetic) */
.ss-ticket-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    display: flex;
    box-shadow: 0 4px 20px -2px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

/* Left Half of Ticket */
.ss-ticket-left {
    flex: 1 1 58%;
    min-width: 0;
    display: flex;
    flex-direction: column;
}

.ss-ticket-left-hero {
    padding: 22px 24px;
    color: #ffffff;
    position: relative;
    background-size: cover;
    background-position: center;
}

.ss-ticket-left-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.82) 0%, rgba(15, 23, 42, 0.94) 100%);
    z-index: 1;
}

.ss-ticket-left-hero > * {
    position: relative;
    z-index: 2;
}

.ss-ticket-status-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #16a34a;
    color: #ffffff;
    font-size: 0.72rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 30px;
    letter-spacing: 0.02em;
}

.ss-ticket-title {
    font-size: 1.25rem;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.25;
    margin: 14px 0 3px 0;
}

.ss-ticket-subtitle {
    font-size: 0.8rem;
    font-weight: 500;
    color: #cbd5e1;
    margin-bottom: 16px;
}

.ss-ticket-meta-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.ss-ticket-meta-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.78rem;
    color: #f1f5f9;
}

.ss-ticket-meta-item i {
    width: 16px;
    text-align: center;
    color: #94a3b8;
    flex-shrink: 0;
}

.ss-ticket-left-body {
    background: #ffffff;
    padding: 18px 24px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.ss-ticket-field {
    display: flex;
    flex-direction: column;
}

.ss-ticket-field-label {
    font-size: 0.68rem;
    font-weight: 600;
    color: #64748b;
    margin-bottom: 2px;
    text-transform: capitalize;
}

.ss-ticket-field-val {
    font-size: 0.88rem;
    font-weight: 800;
    color: #0f172a;
}

/* Perforation Divider with Notches */
.ss-ticket-divider-wrap {
    position: relative;
    width: 0;
    flex-shrink: 0;
    border-left: 2px dashed #cbd5e1;
}

.ss-ticket-notch-top {
    position: absolute;
    top: -12px;
    left: -12px;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: #f9fafb;
    border: 1px solid #e2e8f0;
    box-shadow: inset 0 -2px 4px rgba(0, 0, 0, 0.04);
    z-index: 10;
}

.ss-ticket-notch-bottom {
    position: absolute;
    bottom: -12px;
    left: -12px;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: #f9fafb;
    border: 1px solid #e2e8f0;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.04);
    z-index: 10;
}

/* Right Half of Ticket */
.ss-ticket-right {
    flex: 1 1 42%;
    min-width: 0;
    background: #ffffff;
    padding: 22px 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
}

.ss-ticket-right-header {
    width: 100%;
    text-align: right;
    margin-bottom: 12px;
}

.ss-ticket-no-label {
    font-size: 0.68rem;
    font-weight: 600;
    color: #64748b;
    margin-bottom: 2px;
}

.ss-ticket-no-val {
    font-size: 0.84rem;
    font-weight: 800;
    color: #0f172a;
    letter-spacing: 0.02em;
}

.ss-ticket-qr-center {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 4px 0 14px 0;
}

.ss-ticket-qr-img {
    width: 148px;
    height: 148px;
    object-fit: contain;
    border-radius: 6px;
    background: #ffffff;
    padding: 4px;
}

.ss-ticket-qr-locked-wrap {
    width: 148px;
    height: 148px;
    border: 2px dashed #cbd5e1;
    border-radius: 12px;
    background: #f8fafc;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 10px;
    text-align: center;
}

.ss-ticket-qr-locked-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #fef3c7;
    color: #d97706;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
    margin-bottom: 6px;
    box-shadow: 0 2px 6px rgba(217, 119, 6, 0.15);
}

.ss-ticket-qr-locked-text {
    font-size: 0.72rem;
    font-weight: 800;
    color: #0f172a;
    line-height: 1.25;
    margin-bottom: 3px;
}

.ss-ticket-qr-locked-sub {
    font-size: 0.62rem;
    color: #64748b;
    line-height: 1.25;
}

.ss-ticket-qr-code {
    font-size: 0.8rem;
    font-weight: 800;
    color: #0f172a;
    letter-spacing: 0.04em;
    margin-top: 6px;
    text-align: center;
}

.ss-ticket-qr-hint {
    font-size: 0.68rem;
    color: #64748b;
    line-height: 1.35;
    max-width: 180px;
    text-align: center;
    margin-top: 6px;
    margin-bottom: 0;
}

.ss-ticket-alert-valid {
    width: 100%;
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
    border-radius: 8px;
    padding: 10px 14px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.ss-ticket-alert-valid i {
    font-size: 1.3rem;
    color: #16a34a;
    flex-shrink: 0;
}

.ss-ticket-alert-title {
    font-size: 0.8rem;
    font-weight: 800;
    color: #166534;
    margin-bottom: 1px;
}

.ss-ticket-alert-desc {
    font-size: 0.68rem;
    color: #15803d;
    line-height: 1.3;
    margin-bottom: 0;
}

/* Instructions & Attention (2-Card Grid) */
.ss-ticket-guides-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 24px;
}

.ss-ticket-guide-blue {
    background: #f0f9ff;
    border: 1px solid #bae6fd;
    border-radius: 12px;
    padding: 18px 20px;
}

.ss-ticket-guide-head-blue {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.88rem;
    font-weight: 800;
    color: #0369a1;
    margin-bottom: 14px;
}

.ss-ticket-guide-head-blue i {
    color: #0284c7;
    font-size: 0.95rem;
}

.ss-ticket-steps-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.ss-ticket-step-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.76rem;
    color: #334155;
    line-height: 1.45;
}

.ss-ticket-step-num {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #0284c7;
    color: #ffffff;
    font-size: 0.68rem;
    font-weight: 800;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 1px;
}

.ss-ticket-guide-yellow {
    background: #fefce8;
    border: 1px solid #fef08a;
    border-radius: 12px;
    padding: 18px 20px;
}

.ss-ticket-guide-head-yellow {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.88rem;
    font-weight: 800;
    color: #854d0e;
    margin-bottom: 14px;
}

.ss-ticket-guide-head-yellow i {
    color: #eab308;
    font-size: 0.95rem;
}

.ss-ticket-bullets-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.ss-ticket-bullet-item {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 0.76rem;
    color: #713f12;
    line-height: 1.45;
}

.ss-ticket-bullet-dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #ca8a04;
    flex-shrink: 0;
    margin-top: 6px;
}

/* Card Tiket Lainnya */
.ss-ticket-other-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    padding: 20px 24px;
    margin-top: 24px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.03);
}

.ss-ticket-other-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 14px;
}

.ss-ticket-other-title {
    font-size: 0.95rem;
    font-weight: 800;
    color: #0f172a;
    margin: 0;
}

.ss-ticket-other-link {
    font-size: 0.76rem;
    font-weight: 700;
    color: #2563eb;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    transition: all 0.15s ease;
}

.ss-ticket-other-link:hover {
    color: #1d4ed8;
    text-decoration: underline;
}

.ss-ticket-table-wrap {
    overflow-x: auto;
}

.ss-ticket-table {
    width: 100%;
    border-collapse: collapse;
}

.ss-ticket-table th {
    font-size: 0.72rem;
    font-weight: 700;
    color: #64748b;
    padding: 10px 12px;
    border-bottom: 1px solid #e2e8f0;
    text-align: left;
    white-space: nowrap;
}

.ss-ticket-table td {
    font-size: 0.78rem;
    padding: 12px 12px;
    border-bottom: 1px solid #f1f5f9;
    vertical-align: middle;
    color: #334155;
}

.ss-ticket-table tr:last-child td {
    border-bottom: none;
}

.ss-ticket-event-name {
    font-weight: 700;
    color: #0f172a;
}

.ss-ticket-pill-active {
    display: inline-block;
    background: #dcfce7;
    color: #15803d;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 2px 10px;
    border-radius: 20px;
}

.ss-ticket-pill-completed {
    display: inline-block;
    background: #e2e8f0;
    color: #64748b;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 2px 10px;
    border-radius: 20px;
}

.ss-ticket-pill-pending {
    display: inline-block;
    background: #fef9c3;
    color: #a16207;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 2px 10px;
    border-radius: 20px;
}

.ss-ticket-btn-view {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #93c5fd;
    color: #2563eb;
    background: transparent;
    font-size: 0.72rem;
    font-weight: 700;
    padding: 3px 14px;
    border-radius: 6px;
    text-decoration: none;
    transition: all 0.15s ease;
}

.ss-ticket-btn-view:hover {
    background: #2563eb;
    border-color: #2563eb;
    color: #ffffff;
}

.ss-ticket-btn-view.active {
    background: #1e293b;
    border-color: #1e293b;
    color: #ffffff;
}

/* Right Sidebar: Informasi Event */
.ss-ticket-info-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    padding: 20px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.03);
}

.ss-ticket-info-title {
    font-size: 0.95rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 14px;
}

.ss-ticket-info-thumb {
    width: 100%;
    height: 140px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 12px;
    background: #0f172a;
}

.ss-ticket-info-name {
    font-size: 0.92rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 3px;
    line-height: 1.3;
}

.ss-ticket-info-sub {
    font-size: 0.76rem;
    color: #64748b;
    margin-bottom: 14px;
}

.ss-ticket-info-metalist {
    display: flex;
    flex-direction: column;
    gap: 9px;
    margin-bottom: 16px;
}

.ss-ticket-info-meta-row {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.76rem;
    color: #334155;
    line-height: 1.35;
}

.ss-ticket-info-meta-row i {
    width: 16px;
    text-align: center;
    color: #64748b;
    flex-shrink: 0;
    margin-top: 1px;
}

.ss-ticket-info-divider {
    border-top: 1px solid #f1f5f9;
    margin: 16px 0;
}

.ss-ticket-info-contact-title {
    font-size: 0.82rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 10px;
}

.ss-ticket-info-contact-row {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.76rem;
    color: #334155;
    margin-bottom: 8px;
}

.ss-ticket-info-contact-row i {
    width: 16px;
    text-align: center;
    color: #64748b;
    flex-shrink: 0;
}

.ss-ticket-detail-btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: 1px solid #93c5fd;
    color: #2563eb;
    background: #ffffff;
    font-size: 0.82rem;
    font-weight: 700;
    padding: 9px 16px;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.2s ease;
    margin-top: 14px;
}

.ss-ticket-detail-btn:hover {
    background: #eff6ff;
    border-color: #2563eb;
    color: #1d4ed8;
}

/* Responsive Ticket Breakpoints */
@media (max-width: 991.98px) {
    .ss-ticket-layout-flex {
        flex-direction: column;
    }
    .ss-ticket-side-col {
        width: 100%;
        min-width: 100%;
    }
    .ss-ticket-guides-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767.98px) {
    .ss-ticket-card {
        flex-direction: column;
    }
    .ss-ticket-divider-wrap {
        width: 100%;
        height: 0;
        border-left: none;
        border-top: 2px dashed #cbd5e1;
    }
    .ss-ticket-notch-top {
        top: -12px;
        left: -12px;
    }
    .ss-ticket-notch-bottom {
        bottom: -12px;
        right: -12px;
        left: auto;
    }
    .ss-ticket-right-header {
        text-align: center;
    }
}

/* Print Only Styles */
@media print {
    body * {
        visibility: hidden;
    }
    .ss-ticket-card, .ss-ticket-card * {
        visibility: visible;
    }
    .ss-ticket-card {
        position: absolute;
        left: 0;
        top: 0;
        width: 100% !important;
        box-shadow: none !important;
        border: 1px solid #000000 !important;
    }
    .ss-ticket-left-hero {
        background: #1e293b !important;
        color: #ffffff !important;
        -webkit-print-color-adjust: exact;
        print-color-adjust: exact;
    }
}

/* ==========================================================================
   PENDAFTARAN SAYA (REGISTRATION WIZARD) STYLES
   ========================================================================== */

/* 1. Stepper Card */
.ss-reg-stepper-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    padding: 18px 24px;
    margin-bottom: 24px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.03);
}

.ss-reg-stepper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.ss-reg-step {
    display: flex;
    align-items: center;
    gap: 12px;
}

.ss-reg-step-circle {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.82rem;
    font-weight: 800;
    flex-shrink: 0;
    transition: all 0.2s ease;
}

.ss-reg-step-circle.active {
    background: #2563eb;
    color: #ffffff;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.15);
}

.ss-reg-step-circle.completed {
    background: #16a34a;
    color: #ffffff;
}

.ss-reg-step-circle.inactive {
    background: #f1f5f9;
    color: #94a3b8;
    border: 1px solid #e2e8f0;
}

.ss-reg-step-info {
    display: flex;
    flex-direction: column;
}

.ss-reg-step-title {
    font-size: 0.84rem;
    font-weight: 700;
    color: #0f172a;
    line-height: 1.25;
}

.ss-reg-step-title.muted {
    color: #94a3b8;
    font-weight: 600;
}

.ss-reg-step-sub {
    font-size: 0.72rem;
    color: #64748b;
}

.ss-reg-step-sub.muted {
    color: #cbd5e1;
}

.ss-reg-step-arrow {
    color: #cbd5e1;
    font-size: 0.85rem;
}

/* 2. Main Layout & Form Card */
.ss-reg-layout-flex {
    display: flex;
    align-items: flex-start;
    gap: 28px;
}

.ss-reg-form-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    padding: 26px 30px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.03);
    margin-bottom: 24px;
}

.ss-reg-title {
    font-size: 1.15rem;
    font-weight: 800;
    color: #0f172a;
    margin: 0 0 6px 0;
}

.ss-reg-desc {
    font-size: 0.82rem;
    color: #64748b;
    margin-bottom: 24px;
    line-height: 1.45;
}

/* 3. Form Inputs (Step 1) */
.ss-reg-group {
    margin-bottom: 18px;
}

.ss-reg-label {
    display: block;
    font-size: 0.8rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 6px;
}

.ss-reg-label .req {
    color: #dc2626;
    margin-left: 2px;
}

.ss-reg-label .opt {
    color: #94a3b8;
    font-weight: 500;
    font-size: 0.74rem;
    margin-left: 4px;
}

.ss-reg-field-wrap {
    position: relative;
}

.ss-reg-input,
.ss-reg-select {
    width: 100%;
    height: 42px;
    padding: 8px 14px;
    font-size: 0.84rem;
    color: #0f172a;
    background: #ffffff;
    border: 1px solid #cbd5e1;
    border-radius: 8px;
    transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.ss-reg-input:focus,
.ss-reg-select:focus {
    outline: none;
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.12);
}

.ss-reg-select-wrap {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
}

.ss-reg-select-icon-left {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: #ef4444;
    font-size: 0.95rem;
    pointer-events: none;
    z-index: 2;
}

.ss-reg-select-icon-right {
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: #94a3b8;
    font-size: 0.78rem;
    pointer-events: none;
    z-index: 2;
}

.ss-reg-select-has-icon-left {
    padding-left: 42px !important;
    padding-right: 36px !important;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    cursor: pointer;
    background-color: #ffffff;
}

.ss-reg-select-no-icon-left {
    padding-left: 14px !important;
    padding-right: 36px !important;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    cursor: pointer;
    background-color: #ffffff;
}

.ss-reg-input-group {
    display: flex;
    align-items: stretch;
}

.ss-reg-input-prefix {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 14px;
    background: #f1f5f9;
    border: 1px solid #cbd5e1;
    border-right: none;
    border-radius: 8px 0 0 8px;
    color: #475569;
    font-size: 0.82rem;
    font-weight: 700;
}

.ss-reg-input-group .ss-reg-input {
    border-radius: 0 8px 8px 0;
}

.ss-reg-divider {
    border-top: 1px solid #f1f5f9;
    margin: 24px 0 20px 0;
}

.ss-reg-section-title {
    font-size: 0.95rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.ss-reg-section-title i {
    color: #2563eb;
}

.ss-reg-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    margin-top: 28px;
    padding-top: 20px;
    border-top: 1px solid #f1f5f9;
}

.ss-reg-btn-back {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    background: #ffffff;
    border: 1px solid #cbd5e1;
    color: #475569;
    font-size: 0.82rem;
    font-weight: 700;
    border-radius: 8px;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.15s ease;
}

.ss-reg-btn-back:hover {
    background: #f8fafc;
    color: #0f172a;
    border-color: #94a3b8;
}

.ss-reg-btn-submit {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 22px;
    background: #2563eb;
    border: 1px solid #2563eb;
    color: #ffffff;
    font-size: 0.82rem;
    font-weight: 700;
    border-radius: 8px;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.15s ease;
}

.ss-reg-btn-submit:hover {
    background: #1d4ed8;
    border-color: #1d4ed8;
    color: #ffffff;
}

/* 4. Step 2: Konfirmasi Data Pendaftaran (Review Tables) */
.ss-reg-review-section {
    margin-bottom: 20px;
}

.ss-reg-review-head {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.86rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 10px;
}

.ss-reg-review-head i {
    color: #2563eb;
    font-size: 0.95rem;
}

.ss-reg-review-box {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    overflow: hidden;
}

.ss-reg-review-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    padding: 11px 18px;
    border-bottom: 1px solid #f1f5f9;
}

.ss-reg-review-row:last-child {
    border-bottom: none;
}

.ss-reg-review-label {
    font-size: 0.8rem;
    color: #64748b;
    font-weight: 500;
    min-width: 140px;
    flex-shrink: 0;
}

.ss-reg-review-val {
    font-size: 0.84rem;
    color: #0f172a;
    font-weight: 700;
    text-align: right;
    word-break: break-word;
}

.ss-reg-review-val.text-primary {
    color: #2563eb !important;
    font-weight: 800;
    font-size: 0.92rem;
}

.ss-reg-info-box {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 14px 18px;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    font-size: 0.78rem;
    line-height: 1.45;
    margin-top: 20px;
    margin-bottom: 20px;
}

.ss-reg-info-box i {
    font-size: 1.05rem;
    margin-top: 2px;
    flex-shrink: 0;
}

/* 5. Step 3: Selesai (Success Card) */
.ss-reg-success-box {
    text-align: center;
    padding: 20px 10px;
}

.ss-reg-success-icon-wrap {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    margin: 0 auto 16px auto;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    border: 2px solid;
}

.ss-reg-success-title {
    font-size: 1.25rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 8px;
}

.ss-reg-success-sub {
    font-size: 0.84rem;
    color: #64748b;
    max-width: 520px;
    margin: 0 auto 24px auto;
    line-height: 1.5;
}

.ss-reg-success-card {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    max-width: 560px;
    margin: 0 auto 24px auto;
    text-align: left;
    overflow: hidden;
}

.ss-reg-success-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    padding: 12px 18px;
    border-bottom: 1px solid #f1f5f9;
}

.ss-reg-success-row:last-child {
    border-bottom: none;
}

.ss-reg-success-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

/* 6. Right Sidebar: Detail Event & Data Anda Aman */
.ss-reg-right-col {
    width: 320px;
    min-width: 320px;
    flex-shrink: 0;
}

.ss-reg-event-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    padding: 20px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.03);
    margin-bottom: 20px;
}

.ss-reg-event-head {
    font-size: 0.95rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 14px;
}

.ss-reg-thumb-wrap {
    width: 100%;
    height: 150px;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 14px;
    background: #0f172a;
}

.ss-reg-thumb-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ss-reg-event-title {
    font-size: 0.95rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 4px;
    line-height: 1.3;
}

.ss-reg-event-sub {
    font-size: 0.76rem;
    color: #64748b;
    margin-bottom: 14px;
}

.ss-reg-meta-list {
    display: flex;
    flex-direction: column;
    gap: 9px;
}

.ss-reg-meta-row {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.76rem;
    color: #334155;
    line-height: 1.35;
}

.ss-reg-meta-row i {
    width: 16px;
    text-align: center;
    color: #64748b;
    flex-shrink: 0;
    margin-top: 1px;
}

.ss-reg-security-card {
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
    border-radius: 12px;
    padding: 16px 18px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.ss-reg-security-icon {
    color: #16a34a;
    font-size: 1.25rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.ss-reg-security-title {
    font-size: 0.85rem;
    font-weight: 800;
    color: #166534;
    margin-bottom: 3px;
}

.ss-reg-security-desc {
    font-size: 0.74rem;
    color: #15803d;
    line-height: 1.4;
}

/* 7. Responsive Styles */
@media (max-width: 991.98px) {
    .ss-reg-layout-flex {
        flex-direction: column;
    }
    .ss-reg-right-col {
        width: 100%;
        min-width: 100%;
    }
}

@media (max-width: 576px) {
    .ss-reg-stepper {
        flex-direction: column;
        align-items: flex-start;
        gap: 14px;
    }
    .ss-reg-step-arrow {
        display: none;
    }
    .ss-reg-review-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
    }
    .ss-reg-review-val {
        text-align: left;
    }
}

/* ============================================================
   TIKET & QR CODE (PARTICIPANT TICKETS & QR LIST)
   Centralized Scoped Styles
   ============================================================ */

.ss-ticket-tabs-wrap {
    background: #ffffff;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    padding: 2px 14px;
    margin-bottom: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.02);
    overflow-x: auto;
    scrollbar-width: none;
}
.ss-ticket-tabs-wrap::-webkit-scrollbar {
    display: none;
}

.ss-ticket-tabs-list {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0;
    padding: 0;
    list-style: none;
    white-space: nowrap;
}

.ss-ticket-tab-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 18px;
    font-size: 0.86rem;
    font-weight: 600;
    color: #64748b;
    background: none;
    border: none;
    border-bottom: 2px solid transparent;
    cursor: pointer;
    transition: all 0.15s ease;
    outline: none;
}

.ss-ticket-tab-btn:hover {
    color: #1e293b;
}

.ss-ticket-tab-btn.active {
    color: #2563eb;
    border-bottom-color: #2563eb;
    font-weight: 700;
}

/* Info Notice Banner */
.ss-ticket-info-banner {
    background: #eff6ff;
    border: 1px solid #dbeafe;
    border-radius: 12px;
    padding: 14px 18px;
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 22px;
}

.ss-ticket-info-icon {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: #2563eb;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    flex-shrink: 0;
}

.ss-ticket-info-text {
    flex: 1;
    min-width: 0;
}

.ss-ticket-info-title {
    font-size: 0.86rem;
    font-weight: 700;
    color: #1e40af;
    line-height: 1.3;
    margin-bottom: 2px;
}

.ss-ticket-info-desc {
    font-size: 0.78rem;
    color: #475569;
    line-height: 1.35;
    margin: 0;
}

/* Main Ticket List Card */
.ss-ticket-list-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.02);
    margin-bottom: 20px;
    overflow: hidden;
    display: flex;
    align-items: stretch;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.ss-ticket-list-card:hover {
    border-color: #cbd5e1;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
}

/* Card Left Section */
.ss-ticket-card-left {
    flex: 1;
    min-width: 0;
    padding: 24px 26px;
    display: flex;
    flex-direction: column;
}

.ss-ticket-top-row {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.ss-ticket-thumb {
    width: 175px;
    min-width: 175px;
    height: 115px;
    border-radius: 10px;
    object-fit: cover;
    background: #0f172a;
    flex-shrink: 0;
}

.ss-ticket-head-col {
    flex: 1;
    min-width: 0;
}

.ss-ticket-status-badge {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 6px;
    line-height: 1.3;
    margin-bottom: 4px;
}

.ss-ticket-status-badge.active {
    background: #16a34a;
    color: #ffffff;
}

.ss-ticket-status-badge.completed {
    background: #64748b;
    color: #ffffff;
}

.ss-ticket-status-badge.pending {
    background: #f59e0b;
    color: #ffffff;
}

.ss-ticket-event-title {
    font-size: 1.15rem;
    font-weight: 800;
    color: #0f172a;
    line-height: 1.3;
    margin: 4px 0 2px 0;
}

.ss-ticket-event-sub {
    font-size: 0.82rem;
    color: #64748b;
    font-weight: 500;
    margin-bottom: 8px;
}

.ss-ticket-event-meta-list {
    display: flex;
    flex-direction: column;
    gap: 4px;
    font-size: 0.78rem;
    color: #475569;
}

.ss-ticket-event-meta-row {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.ss-ticket-event-meta-row i {
    width: 16px;
    text-align: center;
    color: #64748b;
    font-size: 0.82rem;
}

.ss-ticket-card-divider {
    border-top: 1px solid #f1f5f9;
    margin: 18px 0 14px 0;
}

.ss-ticket-meta-table {
    display: flex;
    flex-direction: column;
    gap: 7px;
    font-size: 0.8rem;
}

.ss-ticket-meta-tr {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.ss-ticket-meta-label {
    color: #475569;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    width: 175px;
    min-width: 175px;
    flex-shrink: 0;
}

.ss-ticket-meta-label i {
    width: 16px;
    text-align: center;
    color: #64748b;
    font-size: 0.82rem;
}

.ss-ticket-meta-val {
    color: #0f172a;
    font-weight: 700;
    flex: 1;
    min-width: 0;
    text-align: left;
    word-break: break-word;
}

/* Card Right Section (QR Box & Buttons) */
.ss-ticket-card-right {
    width: 290px;
    min-width: 290px;
    border-left: 1px dashed #e2e8f0;
    padding: 24px 22px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: #fafbfc;
}

.ss-ticket-qr-heading {
    font-size: 0.8rem;
    font-weight: 800;
    color: #0f172a;
    letter-spacing: 0.08em;
    margin-bottom: 12px;
    text-transform: uppercase;
}

.ss-ticket-qr-wrapper {
    position: relative;
    width: 140px;
    height: 140px;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    padding: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.03);
}

.ss-ticket-qr-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.ss-ticket-qr-locked-overlay {
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(2px);
    border-radius: 9px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 8px;
    text-align: center;
}

.ss-ticket-qr-locked-overlay i {
    font-size: 1.6rem;
    color: #d97706;
    margin-bottom: 4px;
}

.ss-ticket-qr-locked-overlay span {
    font-size: 0.72rem;
    font-weight: 700;
    color: #92400e;
    line-height: 1.2;
}

.ss-ticket-number-text {
    font-size: 0.86rem;
    font-weight: 800;
    color: #0f172a;
    letter-spacing: 0.05em;
    margin-top: 8px;
    margin-bottom: 10px;
}

.ss-ticket-status-box {
    width: 100%;
    border-radius: 8px;
    padding: 8px 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 12px;
}

.ss-ticket-status-box.active {
    background: #ecfdf5;
    border: 1px solid #a7f3d0;
}

.ss-ticket-status-box.completed {
    background: #f1f5f9;
    border: 1px solid #e2e8f0;
}

.ss-ticket-status-box.pending {
    background: #fffbeb;
    border: 1px solid #fde68a;
}

.ss-ticket-status-box i {
    font-size: 1.1rem;
    flex-shrink: 0;
}

.ss-ticket-status-box.active i { color: #16a34a; }
.ss-ticket-status-box.completed i { color: #64748b; }
.ss-ticket-status-box.pending i { color: #d97706; }

.ss-ticket-status-box-text {
    text-align: left;
    line-height: 1.2;
}

.ss-ticket-status-box-title {
    font-size: 0.78rem;
    font-weight: 700;
}

.ss-ticket-status-box.active .ss-ticket-status-box-title { color: #065f46; }
.ss-ticket-status-box.completed .ss-ticket-status-box-title { color: #1e293b; }
.ss-ticket-status-box.pending .ss-ticket-status-box-title { color: #92400e; }

.ss-ticket-status-box-sub {
    font-size: 0.68rem;
    margin-top: 1px;
}

.ss-ticket-status-box.active .ss-ticket-status-box-sub { color: #047857; }
.ss-ticket-status-box.completed .ss-ticket-status-box-sub { color: #64748b; }
.ss-ticket-status-box.pending .ss-ticket-status-box-sub { color: #b45309; }

.ss-ticket-actions-row {
    display: flex;
    align-items: center;
    gap: 8px;
    width: 100%;
}

.ss-btn-ticket-download {
    flex: 1;
    background: #ffffff;
    border: 1px solid #cbd5e1;
    color: #1e40af;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.76rem;
    padding: 8px 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.15s;
    white-space: nowrap;
}

.ss-btn-ticket-download:hover {
    background: #f8fafc;
    border-color: #94a3b8;
    color: #1d4ed8;
}

.ss-btn-ticket-expand {
    flex: 1;
    background: #2563eb;
    border: 1px solid #2563eb;
    color: #ffffff;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.76rem;
    padding: 8px 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.15s;
    white-space: nowrap;
}

.ss-btn-ticket-expand:hover {
    background: #1d4ed8;
    border-color: #1d4ed8;
    color: #ffffff;
}

/* Pagination Bar */
.ss-ticket-pagination-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 24px;
    padding-top: 18px;
    border-top: 1px solid #e2e8f0;
    font-size: 0.82rem;
    color: #64748b;
}

.ss-ticket-pagi-btns {
    display: flex;
    align-items: center;
    gap: 6px;
}

.ss-ticket-pagi-btn {
    width: 32px;
    height: 32px;
    border-radius: 6px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #e2e8f0;
    background: #ffffff;
    color: #475569;
    font-size: 0.78rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.15s;
}

.ss-ticket-pagi-btn.active {
    background: #2563eb;
    border-color: #2563eb;
    color: #ffffff;
    font-weight: 700;
}

.ss-ticket-pagi-btn:hover:not(.active) {
    background: #f1f5f9;
    color: #0f172a;
}

/* Responsive adjustments */
@media (max-width: 991.98px) {
    .ss-ticket-list-card {
        flex-direction: column;
    }
    .ss-ticket-card-right {
        width: 100%;
        min-width: 100%;
        border-left: none;
        border-top: 1px dashed #e2e8f0;
    }
}

@media (max-width: 575.98px) {
    .ss-ticket-top-row {
        flex-direction: column;
    }
    .ss-ticket-thumb {
        width: 100%;
        height: 140px;
    }
    .ss-ticket-meta-tr {
        flex-direction: column;
        align-items: flex-start;
        gap: 2px;
    }
    .ss-ticket-meta-label {
        width: 100%;
    }
}

/* Custom Standalone Modal for QR Besar (100% Reliable & Zero Dependency) */
.ss-qr-modal-overlay {
    position: fixed;
    inset: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(15, 23, 42, 0.75);
    backdrop-filter: blur(4px);
    z-index: 999999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
    box-sizing: border-box;
}

.ss-qr-modal-card {
    background: #ffffff;
    border-radius: 16px;
    width: 100%;
    max-width: 420px;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    position: relative;
    animation: ssModalZoom 0.2s ease-out;
}

@keyframes ssModalZoom {
    from { opacity: 0; transform: scale(0.92); }
    to { opacity: 1; transform: scale(1); }
}

.ss-qr-modal-header {
    background: #0f172a;
    padding: 14px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.ss-qr-modal-title {
    color: #ffffff;
    font-size: 0.95rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.ss-qr-modal-close {
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.6rem;
    line-height: 1;
    cursor: pointer;
    padding: 0;
    transition: color 0.15s;
}

.ss-qr-modal-close:hover {
    color: #ffffff;
}

.ss-qr-modal-body {
    padding: 22px 20px 18px 20px;
    text-align: center;
}

.ss-qr-modal-sublabel {
    font-size: 0.7rem;
    text-transform: uppercase;
    color: #64748b;
    font-weight: 700;
    letter-spacing: 0.05em;
    display: block;
}

.ss-qr-modal-event {
    font-size: 1.05rem;
    font-weight: 800;
    color: #0f172a;
    margin: 4px 0 2px 0;
}

.ss-qr-modal-part {
    font-size: 0.8rem;
    color: #475569;
    margin-bottom: 14px;
}

.ss-qr-modal-box {
    position: relative;
    display: inline-block;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    margin-bottom: 10px;
}

.ss-qr-modal-box img {
    width: 210px;
    height: 210px;
    object-fit: contain;
    display: block;
}

.ss-qr-modal-lock {
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(2px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
}

.ss-qr-modal-number {
    font-size: 1.05rem;
    font-weight: 800;
    color: #2563eb;
    letter-spacing: 0.05em;
    display: block;
}

.ss-qr-modal-status-badge {
    padding: 5px 12px;
    border-radius: 6px;
    font-size: 0.76rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 12px;
}

.ss-qr-modal-status-badge.active {
    background: #ecfdf5;
    color: #047857;
    border: 1px solid #a7f3d0;
}

.ss-qr-modal-status-badge.completed {
    background: #f1f5f9;
    color: #334155;
    border: 1px solid #cbd5e1;
}

.ss-qr-modal-status-badge.pending {
    background: #fffbeb;
    color: #92400e;
    border: 1px solid #fde68a;
}

.ss-qr-modal-hint {
    font-size: 0.74rem;
    color: #64748b;
    margin: 0;
    line-height: 1.35;
}

.ss-qr-modal-footer {
    background: #f8fafc;
    border-top: 1px solid #e2e8f0;
    padding: 12px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.ss-qr-modal-btn-close {
    background: #ffffff;
    border: 1px solid #cbd5e1;
    color: #475569;
    border-radius: 8px;
    padding: 7px 16px;
    font-size: 0.8rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.15s;
}

.ss-qr-modal-btn-close:hover {
    background: #f1f5f9;
    color: #0f172a;
}

.ss-qr-modal-btn-download {
    background: #2563eb;
    border: 1px solid #2563eb;
    color: #ffffff;
    border-radius: 8px;
    padding: 7px 16px;
    font-size: 0.8rem;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: all 0.15s;
}

.ss-qr-modal-btn-download:hover {
    background: #1d4ed8;
    color: #ffffff;
}

/* Custom Standalone Modal for Bukti Pembayaran */
.ss-proof-modal-overlay {
    position: fixed;
    inset: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(15, 23, 42, 0.75);
    backdrop-filter: blur(4px);
    z-index: 999999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
    box-sizing: border-box;
}

.ss-proof-modal-card {
    background: #ffffff;
    border-radius: 16px;
    width: 100%;
    max-width: 680px;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    position: relative;
    animation: ssModalZoom 0.2s ease-out;
}

.ss-proof-modal-header {
    background: #0f172a;
    padding: 14px 22px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-shrink: 0;
}

.ss-proof-modal-title {
    color: #ffffff;
    font-size: 0.95rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.ss-proof-modal-close {
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.6rem;
    line-height: 1;
    cursor: pointer;
    padding: 0;
    transition: color 0.15s;
}

.ss-proof-modal-close:hover {
    color: #ffffff;
}

.ss-proof-modal-body {
    padding: 20px;
    overflow-y: auto;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #f8fafc;
    min-height: 260px;
}

.ss-proof-modal-img {
    max-width: 100%;
    max-height: 60vh;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    background: #ffffff;
}

.ss-proof-modal-iframe {
    width: 100%;
    height: 60vh;
    border: none;
    border-radius: 8px;
    background: #ffffff;
}

.ss-proof-modal-footer {
    padding: 14px 22px;
    background: #ffffff;
    border-top: 1px solid #e2e8f0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
    flex-shrink: 0;
}

/* Detail button on ticket list card */
.ss-btn-ticket-detail {
    width: 100%;
    margin-top: 8px;
    background: #f1f5f9;
    border: 1px solid #e2e8f0;
    color: #1e293b;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.78rem;
    padding: 7px 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    text-decoration: none;
    transition: all 0.15s;
}

.ss-btn-ticket-detail:hover {
    background: #2563eb;
    border-color: #2563eb;
    color: #ffffff;
}

/* ==========================================================================
   SARANG SEMUT PARTICIPANT PANEL — PAYMENT PAGE (PEMBAYARAN)
   ========================================================================== */
.ss-pay-stepper-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 16px 24px;
    margin-bottom: 24px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}

.ss-pay-stepper-list {
    display: flex;
    align-items: center;
    justify-content: space-between;
    list-style: none;
    padding: 0;
    margin: 0;
    width: 100%;
}

.ss-pay-step-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.ss-pay-step-num {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    font-weight: 700;
    flex-shrink: 0;
}

.ss-pay-step-num.active,
.ss-pay-step-num.completed {
    background: #2563eb;
    color: #ffffff;
    box-shadow: 0 2px 6px rgba(37, 99, 235, 0.3);
}

.ss-pay-step-num.inactive {
    background: #f1f5f9;
    color: #64748b;
}

.ss-pay-step-label {
    display: flex;
    flex-direction: column;
}

.ss-pay-step-title {
    font-size: 0.88rem;
    font-weight: 700;
    color: #0f172a;
    line-height: 1.25;
}

.ss-pay-step-sub {
    font-size: 0.75rem;
    color: #64748b;
    margin-top: 2px;
}

.ss-pay-step-arrow {
    color: #cbd5e1;
    font-size: 0.85rem;
}

/* Payment Notice Alert */
.ss-pay-notice-alert {
    background: #fffbeb;
    border: 1px solid #fef08a;
    border-radius: 10px;
    padding: 14px 18px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 20px;
}

.ss-pay-notice-icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #fef3c7;
    color: #d97706;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    flex-shrink: 0;
    margin-top: 1px;
}

.ss-pay-notice-text {
    font-size: 0.84rem;
    color: #78350f;
    line-height: 1.5;
    margin: 0;
}

/* Bank Account Card */
.ss-pay-bank-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 20px 24px;
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}

.ss-pay-bank-left {
    display: flex;
    align-items: center;
    gap: 20px;
}

.ss-pay-bank-logo {
    width: 100px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.ss-pay-bank-info {
    display: flex;
    flex-direction: column;
}

.ss-pay-bank-label {
    font-size: 0.76rem;
    color: #64748b;
    margin-bottom: 2px;
}

.ss-pay-bank-number {
    font-size: 1.35rem;
    font-weight: 800;
    color: #0f172a;
    letter-spacing: 0.5px;
    line-height: 1.2;
    margin-bottom: 6px;
}

.ss-pay-bank-name {
    font-size: 0.82rem;
    color: #475569;
}

.ss-pay-bank-holder {
    font-size: 0.82rem;
    color: #475569;
}

.ss-pay-bank-holder strong {
    color: #0f172a;
}

.ss-pay-btn-copy {
    background: #ffffff;
    border: 1px solid #2563eb;
    color: #2563eb;
    border-radius: 8px;
    padding: 8px 16px;
    font-size: 0.82rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    transition: all 0.15s;
    white-space: nowrap;
}

.ss-pay-btn-copy:hover {
    background: #eff6ff;
    border-color: #1d4ed8;
    color: #1d4ed8;
}

/* Nominal Card */
.ss-pay-nominal-card {
    background: #f0f7ff;
    border: 1px solid #bfdbfe;
    border-radius: 12px;
    padding: 20px 24px;
    margin-bottom: 24px;
    display: flex;
    align-items: flex-start;
    gap: 18px;
}

.ss-pay-nominal-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: #dbeafe;
    color: #2563eb;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    flex-shrink: 0;
}

.ss-pay-nominal-info {
    flex-grow: 1;
}

.ss-pay-nominal-label {
    font-size: 0.78rem;
    color: #475569;
    font-weight: 600;
    margin-bottom: 2px;
}

.ss-pay-nominal-val {
    font-size: 1.65rem;
    font-weight: 800;
    color: #0f172a;
    line-height: 1.2;
    margin-bottom: 4px;
}

.ss-pay-nominal-desc {
    font-size: 0.82rem;
    color: #334155;
    margin-bottom: 4px;
}

.ss-pay-nominal-note {
    font-size: 0.76rem;
    color: #64748b;
    margin: 0;
}

/* Upload Dropzone Box */
.ss-pay-upload-wrap {
    margin-bottom: 20px;
}

.ss-pay-upload-label {
    font-size: 0.88rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 8px;
    display: block;
}

.ss-pay-dropzone {
    border: 2px dashed #93c5fd;
    background: #f8fafc;
    border-radius: 12px;
    padding: 32px 20px;
    text-align: center;
    cursor: pointer;
    transition: all 0.2s ease;
}

.ss-pay-dropzone:hover {
    border-color: #3b82f6;
    background: #eff6ff;
}

.ss-pay-dropzone-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #eff6ff;
    color: #2563eb;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    margin-bottom: 12px;
}

.ss-pay-dropzone-text {
    font-size: 0.86rem;
    color: #334155;
    margin-bottom: 4px;
}

.ss-pay-dropzone-text strong {
    color: #0f172a;
}

.ss-pay-dropzone-sub {
    font-size: 0.75rem;
    color: #64748b;
    margin: 0;
}

.ss-pay-file-preview {
    display: none;
    margin-top: 12px;
    background: #f1f5f9;
    border: 1px solid #cbd5e1;
    border-radius: 8px;
    padding: 10px 14px;
    align-items: center;
    justify-content: space-between;
}

/* Notes Textarea */
.ss-pay-notes-wrap {
    margin-bottom: 24px;
}

.ss-pay-notes-label {
    font-size: 0.85rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 8px;
    display: block;
}

.ss-pay-textarea {
    width: 100%;
    border: 1px solid #cbd5e1;
    border-radius: 8px;
    padding: 12px 14px;
    font-size: 0.85rem;
    color: #1e293b;
    resize: vertical;
    transition: border-color 0.15s;
    font-family: inherit;
}

.ss-pay-textarea:focus {
    outline: none;
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

/* Bottom Actions Row */
.ss-pay-actions-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding-top: 12px;
}

.ss-pay-btn-back {
    background: #ffffff;
    border: 1px solid #2563eb;
    color: #2563eb;
    border-radius: 8px;
    padding: 9px 24px;
    font-size: 0.84rem;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.15s;
}

.ss-pay-btn-back:hover {
    background: #eff6ff;
    color: #1d4ed8;
}

.ss-pay-btn-submit {
    background: #2563eb;
    border: 1px solid #2563eb;
    color: #ffffff;
    border-radius: 8px;
    padding: 9px 26px;
    font-size: 0.84rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    transition: all 0.15s;
    box-shadow: 0 2px 6px rgba(37, 99, 235, 0.25);
}

.ss-pay-btn-submit:hover {
    background: #1d4ed8;
    border-color: #1d4ed8;
    color: #ffffff;
}

/* Right Sidebar Cards */
.ss-pay-event-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}

.ss-pay-event-card-title {
    font-size: 0.95rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 14px;
}

.ss-pay-event-thumb {
    width: 100%;
    height: 140px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 12px;
}

.ss-pay-event-name {
    font-size: 0.95rem;
    font-weight: 800;
    color: #0f172a;
    margin: 0 0 2px 0;
}

.ss-pay-event-sub {
    font-size: 0.78rem;
    color: #64748b;
    margin-bottom: 14px;
}

.ss-pay-event-metalist {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 16px;
    padding-bottom: 16px;
    border-bottom: 1px solid #f1f5f9;
}

.ss-pay-event-metarow {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.8rem;
    color: #334155;
}

.ss-pay-event-metarow i {
    color: #64748b;
    width: 16px;
    text-align: center;
}

.ss-pay-event-fee-title {
    font-size: 0.8rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 8px;
}

.ss-pay-event-fee-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8rem;
    margin-bottom: 6px;
    color: #475569;
}

.ss-pay-event-fee-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.88rem;
    font-weight: 800;
    color: #0f172a;
    padding-top: 6px;
    border-top: 1px dashed #e2e8f0;
}

.ss-pay-event-fee-total .val {
    color: #2563eb;
    font-size: 0.95rem;
}

/* Guide Card */
.ss-pay-guide-card {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 18px 20px;
    margin-bottom: 20px;
}

.ss-pay-guide-title {
    font-size: 0.88rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.ss-pay-guide-title i {
    color: #2563eb;
}

.ss-pay-guide-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.ss-pay-guide-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.78rem;
    color: #334155;
    line-height: 1.45;
}

.ss-pay-guide-num {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #2563eb;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: 700;
    flex-shrink: 0;
    margin-top: 1px;
}

/* Help / WhatsApp Card */
.ss-pay-help-card {
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
    border-radius: 12px;
    padding: 18px 20px;
}

.ss-pay-help-head {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 12px;
}

.ss-pay-help-icon {
    width: 34px;
    height: 34px;
    border-radius: 8px;
    background: #dcfce7;
    color: #16a34a;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.ss-pay-help-info {
    flex-grow: 1;
}

.ss-pay-help-title {
    font-size: 0.88rem;
    font-weight: 800;
    color: #14532d;
    margin-bottom: 2px;
}

.ss-pay-help-sub {
    font-size: 0.76rem;
    color: #166534;
    line-height: 1.4;
    margin: 0;
}

.ss-pay-btn-whatsapp {
    width: 100%;
    background: #ffffff;
    border: 1px solid #22c55e;
    color: #15803d;
    border-radius: 8px;
    padding: 8px 14px;
    font-size: 0.82rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-decoration: none;
    transition: all 0.15s;
}

.ss-pay-btn-whatsapp:hover {
    background: #22c55e;
    color: #ffffff;
}

/* Stepper Interactivity & Step Panes */
.ss-pay-step-item {
    cursor: pointer;
    user-select: none;
    transition: transform 0.15s ease, opacity 0.15s ease;
}

.ss-pay-step-item:hover {
    transform: translateY(-1px);
    opacity: 0.9;
}

.ss-pay-step-item.is-active .ss-pay-step-title {
    color: #2563eb;
    font-weight: 800;
}

.ss-pay-step-num.completed {
    background: #16a34a;
    color: #ffffff;
    box-shadow: 0 2px 6px rgba(22, 163, 74, 0.3);
}

.ss-pay-step-arrow.active {
    color: #2563eb;
}

.ss-pay-step-pane {
    display: none;
    animation: ssPayFadeIn 0.22s ease-in-out;
}

.ss-pay-step-pane.active {
    display: block;
}

@keyframes ssPayFadeIn {
    from {
        opacity: 0;
        transform: translateY(4px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Verification & Status Cards */
.ss-pay-verify-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 26px 28px;
    margin-bottom: 24px;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.04);
}

.ss-pay-verify-banner {
    background: #fffbeb;
    border: 1px solid #fde68a;
    border-left: 5px solid #f59e0b;
    border-radius: 12px;
    padding: 20px 24px;
    display: flex;
    align-items: flex-start;
    gap: 18px;
    margin-bottom: 24px;
}

.ss-pay-verify-banner.success {
    background: #f0fdf4;
    border-color: #bbf7d0;
    border-left-color: #16a34a;
}

.ss-pay-verify-banner-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #fef3c7;
    color: #d97706;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.45rem;
    flex-shrink: 0;
    box-shadow: 0 2px 6px rgba(217, 119, 6, 0.15);
}

.ss-pay-verify-banner.success .ss-pay-verify-banner-icon {
    background: #dcfce7;
    color: #16a34a;
    box-shadow: 0 2px 6px rgba(22, 163, 74, 0.15);
}

.ss-pay-verify-banner-body {
    flex: 1;
    min-width: 0;
}

.ss-pay-verify-banner-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 8px;
}

.ss-pay-verify-banner-title {
    font-size: 1.05rem;
    font-weight: 800;
    color: #92400e;
    margin: 0;
    line-height: 1.35;
}

.ss-pay-verify-banner.success .ss-pay-verify-banner-title {
    color: #166534;
}

.ss-pay-verify-banner-text {
    font-size: 0.86rem;
    color: #78350f;
    margin: 0;
    line-height: 1.6;
}

.ss-pay-verify-banner.success .ss-pay-verify-banner-text {
    color: #14532d;
}

/* Card Header with Icon */
.ss-card-header-icon {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.98rem;
    font-weight: 800;
    color: #0f172a;
    margin: 0 0 18px 0;
    padding-bottom: 12px;
    border-bottom: 1px solid #f1f5f9;
}

.ss-card-header-icon i {
    font-size: 1.15rem;
    color: #2563eb;
}

/* Metadata Grid */
.ss-meta-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px 24px;
    margin-bottom: 20px;
}

.ss-meta-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.ss-meta-label {
    font-size: 0.75rem;
    font-weight: 600;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.ss-meta-value {
    font-size: 0.92rem;
    font-weight: 700;
    color: #0f172a;
    line-height: 1.45;
}

.ss-meta-value.highlight {
    color: #2563eb;
    font-size: 1.08rem;
    font-weight: 800;
}

/* Notes Box */
.ss-notes-box {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-left: 3px solid #3b82f6;
    border-radius: 8px;
    padding: 12px 16px;
    font-size: 0.85rem;
    color: #334155;
    line-height: 1.6;
    margin-top: 6px;
}

/* Document Upload Box */
.ss-pay-verify-docbox {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
    margin: 22px 0;
}

.ss-doc-info {
    display: flex;
    align-items: center;
    gap: 14px;
    min-width: 0;
}

.ss-doc-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: #e0f2fe;
    color: #0284c7;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    flex-shrink: 0;
}

.ss-doc-meta {
    display: flex;
    flex-direction: column;
    gap: 4px;
    min-width: 0;
}

.ss-doc-title {
    font-size: 0.88rem;
    font-weight: 700;
    color: #0f172a;
    word-break: break-all;
    line-height: 1.3;
}

/* Timeline */
.ss-pay-timeline {
    margin: 22px 0 26px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    position: relative;
    padding-left: 38px;
}

.ss-pay-timeline::before {
    content: '';
    position: absolute;
    left: 14px;
    top: 10px;
    bottom: 10px;
    width: 2px;
    background: #e2e8f0;
}

.ss-pay-timeline-item {
    position: relative;
}

.ss-pay-timeline-dot {
    position: absolute;
    left: -38px;
    top: 1px;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 700;
}

.ss-pay-timeline-dot.done {
    background: #16a34a;
    color: #ffffff;
    box-shadow: 0 2px 6px rgba(22, 163, 74, 0.25);
}

.ss-pay-timeline-dot.waiting {
    background: #f59e0b;
    color: #ffffff;
    box-shadow: 0 0 0 4px rgba(245, 158, 11, 0.2);
}

.ss-pay-timeline-dot.pending {
    background: #f1f5f9;
    color: #94a3b8;
    border: 1px solid #cbd5e1;
}

.ss-pay-timeline-title {
    font-size: 0.88rem;
    font-weight: 800;
    color: #0f172a;
    line-height: 1.4;
    margin-bottom: 3px;
}

.ss-pay-timeline-title.waiting {
    color: #b45309;
}

.ss-pay-timeline-desc {
    font-size: 0.79rem;
    color: #64748b;
    line-height: 1.55;
    margin: 0;
}

/* Badge Pills */
.ss-badge-pill {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.76rem;
    font-weight: 700;
    line-height: 1.3;
    white-space: nowrap;
}

.ss-badge-pill i {
    font-size: 0.82rem;
    line-height: 1;
}

.ss-badge-warning {
    background: #fef3c7;
    color: #92400e;
    border: 1px solid #fde68a;
}

.ss-badge-success {
    background: #dcfce7;
    color: #166534;
    border: 1px solid #bbf7d0;
}

.ss-badge-danger {
    background: #fee2e2;
    color: #991b1b;
    border: 1px solid #fecaca;
}

/* Centralized Button Action Group & Action Buttons */
.ss-btn-group-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
    padding-top: 22px;
    margin-top: 24px;
    border-top: 1px solid #e2e8f0;
}

.ss-btn-group-right {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.ss-action-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 22px;
    border-radius: 8px;
    font-size: 0.84rem;
    font-weight: 700;
    line-height: 1.4;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.2s ease;
    border: 1px solid transparent;
    white-space: nowrap;
}

.ss-action-btn i {
    font-size: 0.95rem;
    margin: 0;
    line-height: 1;
}

.ss-action-btn-sm {
    padding: 7px 16px;
    font-size: 0.8rem;
    gap: 6px;
}

.ss-action-btn-secondary {
    background: #ffffff;
    border-color: #cbd5e1;
    color: #334155;
}

.ss-action-btn-secondary:hover {
    background: #f8fafc;
    border-color: #94a3b8;
    color: #0f172a;
}

.ss-action-btn-primary {
    background: #2563eb;
    border-color: #2563eb;
    color: #ffffff;
    box-shadow: 0 2px 6px rgba(37, 99, 235, 0.25);
}

.ss-action-btn-primary:hover {
    background: #1d4ed8;
    border-color: #1d4ed8;
    color: #ffffff;
    box-shadow: 0 4px 10px rgba(37, 99, 235, 0.35);
}

.ss-action-btn-success {
    background: #16a34a;
    border-color: #16a34a;
    color: #ffffff;
    box-shadow: 0 2px 6px rgba(22, 163, 74, 0.25);
}

.ss-action-btn-success:hover {
    background: #15803d;
    border-color: #15803d;
    color: #ffffff;
    box-shadow: 0 4px 10px rgba(22, 163, 74, 0.35);
}

.ss-action-btn-outline-primary {
    background: #ffffff;
    border-color: #2563eb;
    color: #2563eb;
}

.ss-action-btn-outline-primary:hover {
    background: #eff6ff;
    color: #1d4ed8;
}

.ss-action-btn-warning {
    background: #f59e0b;
    border-color: #f59e0b;
    color: #ffffff;
    box-shadow: 0 2px 6px rgba(245, 158, 11, 0.25);
}

.ss-action-btn-warning:hover {
    background: #d97706;
    border-color: #d97706;
    color: #ffffff;
}

.ss-pay-actions-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
    padding-top: 22px;
    margin-top: 24px;
    border-top: 1px solid #e2e8f0;
}

@media (max-width: 991.98px) {
    .ss-pay-stepper-list {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
    .ss-pay-step-arrow {
        display: none;
    }
    .ss-pay-bank-card {
        flex-direction: column;
        align-items: flex-start;
    }
    .ss-pay-btn-copy {
        width: 100%;
        justify-content: center;
    }
    .ss-meta-grid {
        grid-template-columns: 1fr;
    }
    .ss-btn-group-actions {
        flex-direction: column;
        align-items: stretch;
    }
    .ss-btn-group-right {
        flex-direction: column;
        width: 100%;
    }
    .ss-action-btn {
        width: 100%;
    }
}

/* ============================================================
   SARANG SEMUT PARTICIPANT: NOTIFICATION PAGE STYLES
   ============================================================ */
.ss-notif-hero {
    position: relative;
    border-radius: 16px;
    padding: 36px 40px;
    background-size: cover;
    background-position: center;
    overflow: hidden;
    margin-bottom: 22px;
    box-shadow: 0 4px 20px -4px rgba(0, 0, 0, 0.12);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.ss-notif-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(15, 23, 42, 0.92) 0%, rgba(15, 23, 42, 0.75) 55%, rgba(15, 23, 42, 0.45) 100%);
    z-index: 1;
}

.ss-notif-hero-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
}

.ss-notif-hero-title {
    font-size: 1.85rem;
    font-weight: 800;
    color: #ffffff;
    margin: 0 0 8px 0;
    letter-spacing: -0.5px;
    line-height: 1.2;
}

.ss-notif-hero-desc {
    font-size: 0.92rem;
    color: rgba(255, 255, 255, 0.88);
    margin: 0;
    line-height: 1.55;
    font-weight: 400;
}

.ss-notif-hero-logo {
    position: relative;
    z-index: 2;
    flex-shrink: 0;
}

.ss-notif-hero-logo img {
    max-height: 68px;
    width: auto;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.35));
}

/* Horizontal Sub-tabs */
.ss-notif-subtabs {
    background: transparent;
    border-bottom: 1px solid #e2e8f0;
    padding: 0;
    display: flex;
    align-items: stretch;
    gap: 0;
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    margin-bottom: 24px;
}

.ss-notif-subtabs::-webkit-scrollbar {
    display: none;
}

.ss-notif-tab-item {
    padding: 10px 18px;
    font-size: 0.92rem;
    font-weight: 500;
    color: #4b5563;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.2s ease;
    border: none;
    border-right: 1px solid #e2e8f0;
    border-bottom: 2.5px solid transparent;
    margin-bottom: -1px;
    cursor: pointer;
    background: transparent;
    white-space: nowrap;
    line-height: 1.4;
}

.ss-notif-tab-item:last-child {
    border-right: none;
}

.ss-notif-tab-item:hover {
    color: #0062ff;
    background: rgba(0, 98, 255, 0.02);
}

.ss-notif-tab-item.active {
    color: #0062ff;
    font-weight: 700;
    border-bottom: 2.5px solid #0062ff;
    background: transparent;
}

.ss-notif-badge-pill {
    font-size: 0.72rem;
    font-weight: 700;
    padding: 0 6px;
    min-width: 20px;
    height: 20px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    flex-shrink: 0;
}

.ss-notif-badge-red {
    background: #ef4444;
    color: #ffffff;
    box-shadow: 0 1px 3px rgba(239, 68, 68, 0.35);
}

/* 2-Column Layout */
.ss-notif-grid {
    display: grid;
    grid-template-columns: 1fr 270px;
    gap: 24px;
    align-items: flex-start;
}

/* Notification List */
.ss-notif-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.ss-notif-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 16px;
    text-decoration: none;
    color: inherit;
    transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.02);
    position: relative;
}

.ss-notif-card:hover {
    border-color: #93c5fd;
    box-shadow: 0 8px 20px -4px rgba(37, 99, 235, 0.08);
    transform: translateY(-1px);
    color: inherit;
}

.ss-notif-card.is-unread {
    background: #ffffff;
    border-color: #cbd5e1;
    box-shadow: 0 2px 6px rgba(37, 99, 235, 0.05);
}

.ss-notif-icon-box {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
    flex-shrink: 0;
}

.ss-notif-info {
    flex-grow: 1;
    min-width: 0;
}

.ss-notif-title {
    font-size: 0.94rem;
    font-weight: 700;
    color: #0f172a;
    margin: 0 0 4px 0;
    line-height: 1.35;
}

.ss-notif-msg {
    font-size: 0.83rem;
    color: #64748b;
    margin: 0;
    line-height: 1.5;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.ss-notif-side {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.ss-notif-time {
    font-size: 0.78rem;
    font-weight: 500;
    color: #94a3b8;
    white-space: nowrap;
}

.ss-notif-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.2);
    flex-shrink: 0;
}

.ss-notif-arrow {
    font-size: 0.8rem;
    color: #cbd5e1;
    transition: transform 0.2s ease;
}

.ss-notif-card:hover .ss-notif-arrow {
    transform: translateX(3px);
    color: #2563eb;
}

/* Empty State */
.ss-notif-empty {
    background: #ffffff;
    border: 1px dashed #cbd5e1;
    border-radius: 14px;
    padding: 48px 24px;
    text-align: center;
}

.ss-notif-empty-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #f1f5f9;
    color: #94a3b8;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin: 0 auto 16px auto;
}

.ss-notif-empty-title {
    font-size: 1rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 6px;
}

.ss-notif-empty-desc {
    font-size: 0.85rem;
    color: #64748b;
    margin: 0;
    line-height: 1.5;
}

/* Pagination Bar */
.ss-notif-pagination {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 4px 8px 4px;
    flex-wrap: wrap;
    gap: 12px;
}

.ss-notif-page-info {
    font-size: 0.84rem;
    color: #64748b;
    font-weight: 500;
}

.ss-notif-pager {
    display: flex;
    align-items: center;
    gap: 6px;
}

.ss-page-nav-btn {
    min-width: 34px;
    height: 34px;
    padding: 0 10px;
    border-radius: 6px;
    border: 1px solid #e2e8f0;
    background: #ffffff;
    color: #475569;
    font-size: 0.84rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.15s ease;
}

.ss-page-nav-btn:hover {
    border-color: #2563eb;
    color: #2563eb;
    background: #eff6ff;
}

.ss-page-nav-btn.active {
    background: #2563eb;
    color: #ffffff;
    border-color: #2563eb;
    font-weight: 700;
}

.ss-page-nav-btn.disabled {
    opacity: 0.5;
    pointer-events: none;
    background: #f8fafc;
}

/* Right Filter Card */
.ss-notif-filter-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.02);
    margin-bottom: 16px;
}

.ss-notif-filter-header {
    font-size: 0.95rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 14px;
    letter-spacing: -0.2px;
}

.ss-notif-filter-menu {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.ss-notif-filter-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 14px;
    border-radius: 8px;
    font-size: 0.86rem;
    color: #475569;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.15s ease;
    cursor: pointer;
    border: 1px solid transparent;
}

.ss-notif-filter-item:hover {
    background: #f8fafc;
    color: #0f172a;
}

.ss-notif-filter-item.active {
    background: #f0fdf4;
    color: #16a34a;
    border-color: #bbf7d0;
    font-weight: 700;
}

.ss-notif-filter-left {
    display: flex;
    align-items: center;
    gap: 12px;
}

.ss-notif-filter-left i {
    width: 16px;
    text-align: center;
    font-size: 0.95rem;
    color: inherit;
}

.ss-notif-badge-pill-right {
    font-size: 0.74rem;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 12px;
    line-height: 1.2;
}

.ss-badge-green {
    background: #22c55e;
    color: #ffffff;
}

.ss-badge-neutral {
    background: #e2e8f0;
    color: #475569;
}

/* Mark All Read Button */
.ss-notif-mark-all-btn {
    width: 100%;
    padding: 11px 16px;
    border-radius: 8px;
    border: 1px solid #bfdbfe;
    background: #ffffff;
    color: #2563eb;
    font-size: 0.85rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.03);
}

.ss-notif-mark-all-btn:hover {
    background: #eff6ff;
    border-color: #60a5fa;
    color: #1d4ed8;
}

@media (max-width: 991.98px) {
    .ss-notif-hero {
        flex-direction: column;
        align-items: flex-start;
        padding: 28px 24px;
    }
    .ss-notif-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================================
   SARANG SEMUT PARTICIPANT: PROFILE PAGE STYLES
   ============================================================ */
.ss-prof-grid {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 24px;
    align-items: flex-start;
}

.ss-prof-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    padding: 30px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.02);
}

.ss-prof-title {
    font-size: 1.22rem;
    font-weight: 800;
    color: #0f172a;
    margin: 0 0 4px 0;
    letter-spacing: -0.3px;
}

.ss-prof-subtitle {
    font-size: 0.84rem;
    color: #64748b;
    margin: 0 0 22px 0;
}

/* Avatar Row */
.ss-prof-avatar-wrap {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 24px;
    padding: 16px;
    background: #f8fafc;
    border-radius: 12px;
    border: 1px dashed #cbd5e1;
}

.ss-prof-avatar-box {
    position: relative;
    width: 90px;
    height: 90px;
    flex-shrink: 0;
}

.ss-prof-avatar-img {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #ffffff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    background-color: #cbd5e1;
}

.ss-prof-camera-btn {
    position: absolute;
    bottom: -2px;
    right: -2px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #0f172a;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    cursor: pointer;
    border: 2px solid #ffffff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    transition: all 0.2s ease;
    margin: 0;
}

.ss-prof-camera-btn:hover {
    background: #2563eb;
    transform: scale(1.08);
}

.ss-prof-avatar-info {
    font-size: 0.78rem;
    color: #64748b;
    line-height: 1.55;
}

.ss-prof-avatar-info span {
    display: block;
}

/* Form Styles */
.ss-prof-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 16px;
}

.ss-prof-form-group {
    margin-bottom: 16px;
}

.ss-prof-label {
    display: block;
    font-size: 0.84rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 6px;
}

.ss-prof-label .req {
    color: #ef4444;
    margin-left: 2px;
}

.ss-prof-input {
    width: 100%;
    height: 42px;
    padding: 8px 14px;
    border: 1px solid #cbd5e1;
    border-radius: 8px;
    font-size: 0.88rem;
    color: #0f172a;
    background: #ffffff;
    transition: all 0.15s ease;
}

.ss-prof-input:focus {
    outline: none;
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.ss-prof-input-prefix-group {
    display: flex;
    align-items: stretch;
    width: 100%;
}

.ss-prof-prefix-box {
    background: #f1f5f9;
    border: 1px solid #cbd5e1;
    border-right: none;
    padding: 0 14px;
    display: flex;
    align-items: center;
    font-weight: 700;
    font-size: 0.86rem;
    color: #475569;
    border-top-left-radius: 8px;
    border-bottom-left-radius: 8px;
}

.ss-prof-input-prefix-group .ss-prof-input {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}

.ss-prof-select-wrap {
    position: relative;
}

.ss-prof-select-wrap select {
    appearance: none;
    -webkit-appearance: none;
    padding-right: 32px;
    cursor: pointer;
}

.ss-prof-select-arrow {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    color: #94a3b8;
    font-size: 0.75rem;
}

.ss-prof-section-divider {
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid #f1f5f9;
}

.ss-prof-section-title {
    font-size: 1.05rem;
    font-weight: 800;
    color: #0f172a;
    margin: 0 0 4px 0;
}

.ss-prof-section-desc {
    font-size: 0.82rem;
    color: #64748b;
    margin: 0 0 18px 0;
}

.ss-prof-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-top: 26px;
    padding-top: 20px;
    border-top: 1px solid #e2e8f0;
}

.ss-prof-btn-reset {
    height: 42px;
    padding: 0 20px;
    border-radius: 8px;
    border: 1px solid #cbd5e1;
    background: #ffffff;
    color: #475569;
    font-weight: 700;
    font-size: 0.86rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    transition: all 0.15s ease;
}

.ss-prof-btn-reset:hover {
    background: #f8fafc;
    color: #0f172a;
    border-color: #94a3b8;
}

.ss-prof-btn-save {
    height: 42px;
    padding: 0 24px;
    border-radius: 8px;
    border: 1px solid #2563eb;
    background: #2563eb;
    color: #ffffff;
    font-weight: 700;
    font-size: 0.86rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    box-shadow: 0 2px 6px rgba(37, 99, 235, 0.25);
    transition: all 0.15s ease;
}

.ss-prof-btn-save:hover {
    background: #1d4ed8;
    border-color: #1d4ed8;
}

/* Right Column Cards */
.ss-prof-side-col {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.ss-prof-info-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    padding: 20px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.02);
}

.ss-prof-card-head {
    font-size: 0.95rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 14px;
}

.ss-prof-meta-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.ss-prof-meta-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 10px;
    border-bottom: 1px solid #f8fafc;
}

.ss-prof-meta-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.ss-prof-meta-left {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.84rem;
    font-weight: 600;
    color: #475569;
}

.ss-prof-meta-left i {
    width: 16px;
    text-align: center;
    color: #64748b;
    font-size: 0.92rem;
}

.ss-prof-meta-val {
    font-size: 0.84rem;
    font-weight: 700;
    color: #0f172a;
}

.ss-prof-badge-active {
    background: #dcfce7;
    color: #16a34a;
    font-size: 0.72rem;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 20px;
}

/* 2x2 Stats Grid */
.ss-prof-stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.ss-prof-stat-box {
    border-radius: 10px;
    padding: 14px 12px;
    display: flex;
    align-items: center;
    gap: 12px;
    border: 1px solid transparent;
}

.ss-prof-stat-box.stat-blue {
    background: #eff6ff;
    border-color: #dbeafe;
}

.ss-prof-stat-box.stat-blue .ss-prof-stat-icon {
    color: #2563eb;
}

.ss-prof-stat-box.stat-green {
    background: #f0fdf4;
    border-color: #dcfce7;
}

.ss-prof-stat-box.stat-green .ss-prof-stat-icon {
    color: #16a34a;
}

.ss-prof-stat-box.stat-yellow {
    background: #fffbeb;
    border-color: #fef3c7;
}

.ss-prof-stat-box.stat-yellow .ss-prof-stat-icon {
    color: #d97706;
}

.ss-prof-stat-box.stat-red {
    background: #fef2f2;
    border-color: #fee2e2;
}

.ss-prof-stat-box.stat-red .ss-prof-stat-icon {
    color: #dc2626;
}

.ss-prof-stat-icon {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.05rem;
    flex-shrink: 0;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
}

.ss-prof-stat-text {
    min-width: 0;
}

.ss-prof-stat-num {
    font-size: 1.25rem;
    font-weight: 800;
    color: #0f172a;
    line-height: 1;
}

.ss-prof-stat-lbl {
    font-size: 0.72rem;
    color: #64748b;
    font-weight: 600;
    margin-top: 4px;
    line-height: 1.2;
}

/* Callout cards */
.ss-prof-callout-blue {
    background: #eff6ff;
    border: 1px solid #bfdbfe;
    border-radius: 12px;
    padding: 16px;
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.ss-prof-callout-blue i {
    color: #2563eb;
    font-size: 1.15rem;
    margin-top: 1px;
    flex-shrink: 0;
}

.ss-prof-callout-yellow {
    background: #fffdf0;
    border: 1px solid #fef3c7;
    border-radius: 12px;
    padding: 16px;
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.ss-prof-callout-yellow i {
    color: #d97706;
    font-size: 1.15rem;
    margin-top: 1px;
    flex-shrink: 0;
}

.ss-prof-callout-title {
    font-size: 0.86rem;
    font-weight: 800;
    color: #0f172a;
    margin: 0 0 3px 0;
}

.ss-prof-callout-desc {
    font-size: 0.78rem;
    color: #475569;
    margin: 0;
    line-height: 1.5;
}

@media (max-width: 991.98px) {
    .ss-prof-grid {
        grid-template-columns: 1fr;
    }
    .ss-prof-form-row {
        grid-template-columns: 1fr;
    }
}

/* User Dropdown in Header */
.ss-user-dropdown-toggle {
    display: flex !important;
    align-items: center !important;
    gap: 10px !important;
    text-decoration: none !important;
    cursor: pointer !important;
    outline: none !important;
    padding: 3px 0 !important;
    transition: opacity 0.15s ease !important;
}

.ss-user-dropdown-toggle:hover {
    opacity: 0.9 !important;
}

.ss-user-dropdown-menu {
    border-radius: 12px !important;
    padding: 8px !important;
    min-width: 190px !important;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.15), 0 8px 10px -6px rgba(0, 0, 0, 0.08) !important;
    border: 1px solid #e2e8f0 !important;
    background: #ffffff !important;
    animation: fadeInDown 0.15s ease-out;
}

.ss-user-dd-item {
    display: flex !important;
    align-items: center !important;
    gap: 10px !important;
    padding: 8px 12px !important;
    border-radius: 8px !important;
    font-size: 0.82rem !important;
    font-weight: 600 !important;
    color: #1e293b !important;
    line-height: 1.3 !important;
    text-decoration: none !important;
    transition: all 0.15s ease !important;
}

.ss-user-dd-item:hover,
.ss-user-dd-item:focus {
    background-color: #f1f5f9 !important;
    color: #0f172a !important;
}

.ss-user-dd-item.text-danger {
    color: #ef4444 !important;
}

.ss-user-dd-item.text-danger:hover,
.ss-user-dd-item.text-danger:focus {
    background-color: #fef2f2 !important;
    color: #dc2626 !important;
}

.ss-user-dd-icon {
    width: 18px !important;
    text-align: center !important;
    font-size: 0.88rem !important;
    flex-shrink: 0 !important;
}

/* ============================================================
   SARANG SEMUT - UBAH PASSWORD PAGE
   ============================================================ */
.ss-pw-grid {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 28px;
    align-items: start;
}

.ss-pw-form-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.02);
}

.ss-pw-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 6px;
    letter-spacing: -0.01em;
}

.ss-pw-desc {
    font-size: 0.86rem;
    color: #64748b;
    margin-bottom: 24px;
    line-height: 1.45;
}

.ss-pw-group {
    margin-bottom: 20px;
}

.ss-pw-label {
    display: block;
    font-size: 0.86rem;
    font-weight: 600;
    color: #334155;
    margin-bottom: 7px;
}

.ss-pw-input-wrap {
    position: relative;
    display: flex;
    align-items: center;
}

.ss-pw-input {
    width: 100%;
    height: 44px;
    background-color: #ffffff;
    border: 1px solid #cbd5e1;
    border-radius: 8px;
    padding: 10px 42px 10px 14px;
    font-size: 0.88rem;
    color: #1e293b;
    transition: border-color 0.15s ease, box-shadow 0.15s ease;
    outline: none;
}

.ss-pw-input:focus {
    border-color: #0284c7;
    box-shadow: 0 0 0 3px rgba(2, 132, 199, 0.12);
}

.ss-pw-input::placeholder {
    color: #94a3b8;
    letter-spacing: 2px;
}

.ss-pw-toggle {
    position: absolute;
    right: 12px;
    background: transparent;
    border: none;
    color: #94a3b8;
    padding: 6px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    transition: color 0.15s ease;
    z-index: 2;
}

.ss-pw-toggle:hover {
    color: #475569;
}

/* Syarat Password Box */
.ss-pw-rules-box {
    background: #f0f7ff;
    border: 1px solid #dbeafe;
    border-radius: 10px;
    padding: 18px 20px;
    margin: 22px 0;
}

.ss-pw-rules-header {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    font-weight: 700;
    color: #1e40af;
    margin-bottom: 12px;
}

.ss-pw-rules-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.ss-pw-rule-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.82rem;
    color: #334155;
    line-height: 1.4;
}

.ss-pw-rule-icon {
    font-size: 0.95rem;
    color: #10b981;
    flex-shrink: 0;
    transition: color 0.2s ease, transform 0.2s ease;
}

.ss-pw-rule-icon.pending {
    color: #94a3b8;
}

/* Action Buttons */
.ss-pw-actions {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: 26px;
}

.ss-pw-btn-reset {
    background: #ffffff;
    border: 1px solid #cbd5e1;
    color: #1e40af;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.86rem;
    padding: 9px 24px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    transition: all 0.15s ease;
}

.ss-pw-btn-reset:hover {
    background: #f8fafc;
    border-color: #94a3b8;
    color: #1d4ed8;
}

.ss-pw-btn-submit {
    background: #0284c7;
    border: none;
    color: #ffffff;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.86rem;
    padding: 10px 26px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    box-shadow: 0 1px 2px rgba(2, 132, 199, 0.2);
    transition: all 0.15s ease;
}

.ss-pw-btn-submit:hover {
    background: #0369a1;
    color: #ffffff;
    box-shadow: 0 4px 10px rgba(2, 132, 199, 0.3);
}

/* Right Column Cards */
.ss-pw-info-card {
    background: #eff6ff;
    border: 1px solid #bfdbfe;
    border-radius: 12px;
    padding: 20px;
    display: flex;
    gap: 14px;
    align-items: flex-start;
    margin-bottom: 20px;
}

.ss-pw-info-icon {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: #2563eb;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.05rem;
    flex-shrink: 0;
}

.ss-pw-info-title {
    font-size: 0.92rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 4px;
}

.ss-pw-info-text {
    font-size: 0.82rem;
    color: #475569;
    margin: 0;
    line-height: 1.45;
}

.ss-pw-tips-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.02);
}

.ss-pw-tips-header {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.94rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 18px;
}

.ss-pw-tips-header i {
    color: #f59e0b;
    font-size: 1.15rem;
}

.ss-pw-tips-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.ss-pw-tip-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.82rem;
    color: #475569;
    line-height: 1.45;
}

.ss-pw-tip-num {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #f59e0b;
    color: #ffffff;
    font-size: 0.74rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 1px;
}

@media (max-width: 991.98px) {
    .ss-pw-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}