/* =========================
   SENPAY V2 — BLUE / PURPLE LUXE
   CLEAN COMPACT VERSION
   ========================= */

.spv2-app{
    display:flex;
    min-height:100vh;
    background:
        radial-gradient(circle at top left, rgba(96,165,250,0.08), transparent 24%),
        radial-gradient(circle at bottom right, rgba(139,92,246,0.08), transparent 26%),
        linear-gradient(180deg,#f7faff 0%, #eef4fb 100%);
    color:#1f2937;
    font-family:'Inter',sans-serif;
}

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

.spv2-sidebar{
    width:250px;
    flex:0 0 250px;
    background:rgba(255,255,255,0.82);
    backdrop-filter:blur(14px);
    border-right:1px solid rgba(148,163,184,0.16);
    padding:20px 16px;
    display:flex;
    flex-direction:column;
    gap:18px;
    box-shadow:0 10px 30px rgba(15,23,42,0.04);
}

.spv2-brand{
    padding:8px 12px 16px;
    border-bottom:1px solid rgba(148,163,184,0.12);
}

.spv2-brand-title{
    font-size:24px;
    font-weight:900;
    line-height:1;
    letter-spacing:-0.03em;
    color:#0f172a;
}

.spv2-brand-sub{
    margin-top:6px;
    font-size:11px;
    color:#64748b;
    font-weight:700;
    letter-spacing:0.08em;
    text-transform:uppercase;
}

.spv2-nav{
    display:flex;
    flex-direction:column;
    gap:7px;
}

.spv2-nav a{
    display:flex;
    align-items:center;
    gap:10px;
    text-decoration:none;
    color:#334155;
    font-size:15px;
    font-weight:700;
    padding:12px 14px;
    border-radius:15px;
    transition:all .22s ease;
}

.spv2-nav a:hover{
    background:#f5f8ff;
    color:#0f172a;
    transform:translateX(1px);
}

.spv2-nav a.spv2-active{
    background:linear-gradient(135deg, rgba(219,234,254,0.95) 0%, rgba(237,233,254,0.95) 100%);
    color:#0f172a;
    box-shadow:
        inset 0 0 0 1px rgba(99,102,241,0.10),
        0 10px 24px rgba(99,102,241,0.08);
}

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

.spv2-main{
    flex:1;
    min-width:0;
    display:flex;
    flex-direction:column;
}

/* =========================
   HEADER
   ========================= */

.spv2-header{
    min-height:48px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    padding:6px 18px;
    background:rgba(255,255,255,0.58);
    backdrop-filter:blur(10px);
    border-bottom:1px solid rgba(148,163,184,0.10);
}

.spv2-header-left h1{
    margin:0;
    font-size:17px;
    line-height:1.02;
    font-weight:850;
    color:#0f172a;
    letter-spacing:-0.03em;
}

.spv2-header-left p{
    margin:1px 0 0;
    font-size:10px;
    line-height:1.2;
    color:#64748b;
}

.spv2-header-right{
    display:flex;
    align-items:center;
    gap:8px;
}

.spv2-user-pill,
.spv2-logout-btn{
    display:inline-flex;
    align-items:center;
    gap:8px;
    min-height:28px;
    padding:0 10px;
    border-radius:999px;
    background:rgba(255,255,255,0.92);
    border:1px solid rgba(148,163,184,0.14);
    box-shadow:0 4px 14px rgba(15,23,42,0.04);
    color:#334155;
    text-decoration:none;
    font-size:12px;
    font-weight:700;
    white-space:nowrap;
}

.spv2-logout-btn:hover{
    background:#f8fbff;
    color:#0f172a;
}

/* =========================
   CONTENT
   ========================= */

.spv2-content{
    padding:18px 28px 28px;
}

/* =========================
   WELCOME PANEL
   ========================= */

.spv2-welcome{
    position:relative;
    overflow:hidden;
    display:grid;
    grid-template-columns:1.55fr 0.9fr;
    gap:18px;
    padding:22px 24px;
    border-radius:30px;
    background:
        radial-gradient(circle at top right, rgba(139,92,246,0.18), transparent 28%),
        radial-gradient(circle at bottom left, rgba(59,130,246,0.16), transparent 30%),
        linear-gradient(135deg,#f4fbff 0%, #eef4ff 50%, #f7f2ff 100%);
    border:1px solid rgba(148,163,184,0.14);
    box-shadow:0 24px 60px rgba(15,23,42,0.06);
}

.spv2-welcome::before{
    content:"";
    position:absolute;
    right:-70px;
    top:-70px;
    width:230px;
    height:230px;
    border-radius:999px;
    background:radial-gradient(circle, rgba(139,92,246,0.14) 0%, rgba(139,92,246,0) 70%);
    pointer-events:none;
}

.spv2-welcome::after{
    content:"";
    position:absolute;
    left:-70px;
    bottom:-70px;
    width:210px;
    height:210px;
    border-radius:999px;
    background:radial-gradient(circle, rgba(59,130,246,0.13) 0%, rgba(59,130,246,0) 70%);
    pointer-events:none;
}

.spv2-welcome-main{
    position:relative;
    z-index:1;
    display:flex;
    flex-direction:column;
    justify-content:center;
    min-height:160px;
}

.spv2-kicker{
    display:inline-block;
    margin-bottom:10px;
    font-size:11px;
    font-weight:800;
    letter-spacing:0.08em;
    text-transform:uppercase;
    color:#6366f1;
}

.spv2-welcome-main h2{
    margin:0;
    font-size:38px;
    line-height:1.02;
    font-weight:900;
    letter-spacing:-0.04em;
    color:#0f172a;
    max-width:760px;
}

.spv2-welcome-main p{
    margin:12px 0 0;
    max-width:760px;
    font-size:15px;
    line-height:1.6;
    color:#475569;
}

.spv2-welcome-meta{
    margin-top:16px;
    display:flex;
    flex-wrap:wrap;
    gap:10px;
}

.spv2-email-badge,
.spv2-status-badge{
    display:inline-flex;
    align-items:center;
    min-height:36px;
    padding:0 13px;
    border-radius:999px;
    font-size:13px;
    font-weight:700;
    border:1px solid rgba(148,163,184,0.14);
    background:rgba(255,255,255,0.84);
    box-shadow:0 8px 22px rgba(15,23,42,0.05);
}

.spv2-email-badge{
    color:#334155;
}

.spv2-status-badge{
    color:#5b4df6;
}

.spv2-welcome-side{
    position:relative;
    z-index:1;
    display:flex;
    align-items:center;
    justify-content:flex-end;
}

.spv2-mini-card{
    width:100%;
    max-width:300px;
    padding:18px;
    border-radius:22px;
    background:rgba(255,255,255,0.86);
    border:1px solid rgba(148,163,184,0.14);
    box-shadow:0 18px 42px rgba(15,23,42,0.06);
}

.spv2-mini-label{
    font-size:12px;
    font-weight:800;
    letter-spacing:0.06em;
    text-transform:uppercase;
    color:#64748b;
}

.spv2-mini-value{
    margin-top:8px;
    font-size:24px;
    line-height:1.08;
    font-weight:900;
    letter-spacing:-0.03em;
    color:#0f172a;
}

.spv2-mini-text{
    margin-top:8px;
    font-size:13px;
    line-height:1.65;
    color:#64748b;
}

/* =========================
   STATS
   ========================= */

.spv2-stats{
    margin-top:22px;
    display:grid;
    grid-template-columns:repeat(4, minmax(0, 1fr));
    gap:16px;
}

.spv2-stat-card{
    background:rgba(255,255,255,0.92);
    border:1px solid rgba(148,163,184,0.14);
    border-radius:24px;
    padding:18px 18px 16px;
    box-shadow:0 14px 30px rgba(15,23,42,0.05);
}

.spv2-stat-top{
    display:flex;
    align-items:center;
    gap:10px;
}

.spv2-stat-icon{
    width:36px;
    height:36px;
    border-radius:12px;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    background:linear-gradient(135deg,#e0edff 0%, #efe8ff 100%);
    color:#5b4df6;
    font-size:16px;
    font-weight:900;
    box-shadow:inset 0 0 0 1px rgba(99,102,241,0.10);
}

.spv2-stat-label{
    font-size:13px;
    font-weight:800;
    letter-spacing:0.02em;
    color:#64748b;
    text-transform:uppercase;
}

.spv2-stat-value{
    margin-top:16px;
    font-size:38px;
    line-height:1.05;
    font-weight:900;
    letter-spacing:-0.045em;
    color:#0f172a;
    word-break:break-word;
}

.spv2-stat-value-sm{
    font-size:22px;
    line-height:1.25;
}

.spv2-stat-note{
    margin-top:10px;
    font-size:13px;
    line-height:1.62;
    color:#64748b;
}

/* =========================
   PLACEHOLDER
   ========================= */

.spv2-stage-placeholder{
    margin-top:22px;
    min-height:170px;
    border-radius:24px;
    border:1px dashed rgba(148,163,184,0.28);
    background:rgba(255,255,255,0.52);
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:15px;
    font-weight:700;
    color:#64748b;
}

/* =========================
   RESPONSIVE
   ========================= */

@media (max-width: 1200px){
    .spv2-welcome{
        grid-template-columns:1fr;
    }

    .spv2-welcome-side{
        justify-content:flex-start;
    }

    .spv2-mini-card{
        max-width:100%;
    }

    .spv2-stats{
        grid-template-columns:repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 1024px){
    .spv2-app{
        flex-direction:column;
    }

    .spv2-sidebar{
        width:100%;
        flex:none;
        border-right:none;
        border-bottom:1px solid rgba(148,163,184,0.18);
    }

    .spv2-header{
        min-height:auto;
        padding:10px 18px;
        flex-direction:column;
        align-items:flex-start;
        gap:10px;
    }

    .spv2-header-right{
        width:100%;
        flex-wrap:wrap;
    }

    .spv2-content{
        padding:16px 18px 18px;
    }
}

@media (max-width: 768px){
    .spv2-welcome{
        padding:18px;
        border-radius:22px;
    }

    .spv2-welcome-main{
        min-height:auto;
    }

    .spv2-welcome-main h2{
        font-size:30px;
    }

    .spv2-welcome-main p{
        font-size:14px;
        line-height:1.65;
    }

    .spv2-stats{
        grid-template-columns:1fr;
    }

    .spv2-stat-value{
        font-size:30px;
    }

    .spv2-stat-value-sm{
        font-size:20px;
    }

    .spv2-stage-placeholder{
        min-height:120px;
    }
}

/* =========================
   ACTIVE SERVICES — POLISHED
   ========================= */

.spv2-section{
    margin-top:22px;
}

/* section intro card */
.spv2-section-head{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:16px;
    margin-bottom:14px;
    padding:18px 20px;
    border-radius:20px;
    background:linear-gradient(135deg, rgba(255,255,255,0.78) 0%, rgba(245,247,255,0.96) 100%);
    border:1px solid rgba(148,163,184,0.12);
    box-shadow:0 10px 24px rgba(15,23,42,0.04);
}

.spv2-section-head > div:first-child{
    min-width:0;
}

.spv2-section-kicker{
    display:inline-flex;
    align-items:center;
    min-height:24px;
    padding:0 10px;
    border-radius:999px;
    font-size:10px;
    font-weight:800;
    letter-spacing:.08em;
    text-transform:uppercase;
    color:#4f46e5;
    background:#eef2ff;
    border:1px solid rgba(99,102,241,0.12);
    margin-bottom:8px;
}

.spv2-section-head h3{
    margin:0;
    font-size:24px;
    line-height:1.05;
    font-weight:900;
    letter-spacing:-0.03em;
    color:#0f172a;
}

.spv2-section-head p{
    margin:6px 0 0;
    font-size:14px;
    line-height:1.6;
    color:#64748b;
    max-width:700px;
}

.spv2-section-badge{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    min-height:34px;
    padding:0 12px;
    border-radius:999px;
    background:linear-gradient(135deg,#eef2ff,#e0e7ff);
    border:1px solid rgba(99,102,241,0.12);
    font-size:12px;
    font-weight:800;
    color:#4f46e5;
    white-space:nowrap;
    box-shadow:0 6px 18px rgba(99,102,241,0.10);
}

/* card */
.spv2-table-card{
    background:#ffffff;
    border:1px solid rgba(148,163,184,0.12);
    border-radius:22px;
    box-shadow:0 12px 28px rgba(15,23,42,0.04);
    overflow:hidden;
}

.spv2-table-wrap{
    width:100%;
    overflow-x:auto;
}

/* table */
.spv2-table{
    width:100%;
    border-collapse:separate;
    border-spacing:0;
    min-width:900px;
}

/* head */
.spv2-table thead th{
    text-align:left;
    font-size:11px;
    font-weight:800;
    text-transform:uppercase;
    letter-spacing:.04em;
    color:#64748b;
    padding:12px 16px;
    background:#f8fafc;
    border-bottom:1px solid rgba(148,163,184,0.10);
}

/* body */
.spv2-table tbody td{
    padding:12px 16px;
    font-size:13px;
    color:#334155;
    border-bottom:1px solid rgba(148,163,184,0.08);
    vertical-align:middle;
}

/* striped */
.spv2-table tbody tr:nth-child(odd) td{
    background:#ffffff;
}

.spv2-table tbody tr:nth-child(even) td{
    background:#f8fbff;
}

/* hover */
.spv2-table tbody tr:hover td{
    background:#eef4ff;
}

.spv2-table tbody tr:last-child td{
    border-bottom:none;
}

/* alignment */
.spv2-table td:first-child{
    text-align:center;
}

.spv2-table td:last-child{
    text-align:center;
}

/* text */
.spv2-cell-strong{
    font-weight:800;
    color:#0f172a;
}

/* password same weight as username */
.spv2-table td:nth-child(3){
    font-weight:800;
    color:#0f172a;
}

/* type */
.spv2-type-pill{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    min-height:28px;
    padding:0 11px;
    border-radius:999px;
    font-size:11px;
    font-weight:800;
    margin:auto;
}

.spv2-type-m3u{
    background:#dbeafe;
    color:#2563eb;
}

.spv2-type-mag{
    background:#ede9fe;
    color:#7c3aed;
}

/* expiry */
.spv2-expiry-date{
    font-weight:700;
    color:#0f172a;
}

.spv2-expiry-soon{
    display:inline-flex;
    align-items:center;
    margin-left:6px;
    padding:2px 6px;
    font-size:10px;
    border-radius:999px;
    background:#fef3c7;
    color:#92400e;
}

.spv2-expired{
    display:inline-flex;
    align-items:center;
    padding:3px 8px;
    border-radius:999px;
    font-size:10px;
    background:#fee2e2;
    color:#991b1b;
}

/* actions */
.spv2-actions{
    display:flex;
    justify-content:center;
    flex-wrap:wrap;
    gap:8px;
}

/* buttons */
.spv2-action-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    min-width:86px;
    height:30px;
    padding:0 12px;
    border-radius:10px;
    font-size:12px;
    font-weight:800;
    text-decoration:none;
    border:1px solid transparent;
    background:linear-gradient(135deg,#3b82f6,#6366f1);
    color:#ffffff;
    box-shadow:0 4px 10px rgba(99,102,241,0.25);
    cursor:pointer;
    transition:all .2s ease;
}

.spv2-action-btn:hover{
    background:#ffffff;
    color:#4f46e5;
    border-color:rgba(99,102,241,0.25);
    box-shadow:0 6px 16px rgba(99,102,241,0.15);
    transform:translateY(-1px);
}

.spv2-action-btn.is-muted{
    background:#f1f5f9;
    color:#94a3b8;
    border:1px solid rgba(148,163,184,0.12);
    box-shadow:none;
    cursor:default;
    transform:none;
}

/* empty */
.spv2-empty-state{
    padding:20px;
    font-size:14px;
    color:#64748b;
}

/* responsive */
@media (max-width: 768px){
    .spv2-section-head{
        padding:16px;
        border-radius:18px;
        flex-direction:column;
        align-items:flex-start;
    }

    .spv2-section-head h3{
        font-size:20px;
    }

    .spv2-section-head p{
        font-size:13px;
    }
}

/* =========================
   RECENT ORDERS
   ========================= */

.spv2-orders-table td:nth-child(5){
    font-weight:800;
    color:#0f172a;
}

.spv2-order-status{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    min-height:26px;
    padding:0 10px;
    border-radius:999px;
    font-size:11px;
    font-weight:800;
    white-space:nowrap;
}

.spv2-order-status.senpay-dash-status-completed{
    background:#dcfce7;
    color:#166534;
}

.spv2-order-status.senpay-dash-status-processing{
    background:#fef3c7;
    color:#92400e;
}

.spv2-order-status.senpay-dash-status-refunded{
    background:#fee2e2;
    color:#991b1b;
}

.spv2-order-sub-pill{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    min-height:28px;
    padding:0 11px;
    border-radius:999px;
    font-size:11px;
    font-weight:800;
    color:#4f46e5;
    background:#eef2ff;
    border:1px solid rgba(99,102,241,0.12);
}

.spv2-order-pass{
    font-weight:800;
    color:#0f172a;
}

.spv2-more-wrap{
    padding:14px 16px 18px;
    display:flex;
    justify-content:center;
    border-top:1px solid rgba(148,163,184,0.08);
    background:#fff;
}

.spv2-more-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    min-width:110px;
    height:34px;
    padding:0 14px;
    border-radius:10px;
    font-size:12px;
    font-weight:800;
    color:#4f46e5;
    background:#ffffff;
    border:1px solid rgba(99,102,241,0.18);
    box-shadow:0 4px 12px rgba(99,102,241,0.08);
    cursor:pointer;
    transition:all .2s ease;
}

.spv2-more-btn:hover{
    background:#eef2ff;
    border-color:rgba(99,102,241,0.28);
}

.spv2-order-extra-row.is-hidden{
    display:none;
}

/* =========================
   SUPPORT BLOCK V2
   ========================= */

.spv2-support{
    margin-top:24px;
    display:grid;
    grid-template-columns:1.35fr .9fr;
    gap:18px;
    padding:22px 24px;
    border-radius:24px;
    background:
        radial-gradient(circle at top right, rgba(139,92,246,0.12), transparent 28%),
        radial-gradient(circle at bottom left, rgba(59,130,246,0.10), transparent 30%),
        linear-gradient(135deg,#ffffff 0%, #f8fbff 55%, #f7f2ff 100%);
    border:1px solid rgba(148,163,184,0.12);
    box-shadow:0 14px 34px rgba(15,23,42,0.05);
}

.spv2-support-main h3{
    margin:6px 0 0;
    font-size:26px;
    line-height:1.1;
    font-weight:900;
    letter-spacing:-0.03em;
    color:#0f172a;
}

.spv2-support-main p{
    margin:12px 0 0;
    max-width:720px;
    font-size:14px;
    line-height:1.7;
    color:#64748b;
}

.spv2-support-kicker{
    display:inline-flex;
    align-items:center;
    min-height:24px;
    padding:0 10px;
    border-radius:999px;
    font-size:10px;
    font-weight:800;
    letter-spacing:.08em;
    text-transform:uppercase;
    color:#4f46e5;
    background:#eef2ff;
    border:1px solid rgba(99,102,241,0.12);
}

.spv2-support-meta{
    margin-top:16px;
    display:flex;
    flex-wrap:wrap;
    gap:8px;
}

.spv2-support-pill{
    display:inline-flex;
    align-items:center;
    min-height:30px;
    padding:0 10px;
    border-radius:999px;
    font-size:11px;
    font-weight:800;
    color:#475569;
    background:rgba(255,255,255,0.84);
    border:1px solid rgba(148,163,184,0.12);
}

.spv2-support-actions{
    display:flex;
    flex-direction:column;
    justify-content:center;
    gap:10px;
}

.spv2-support-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    min-height:42px;
    padding:0 16px;
    border-radius:12px;
    text-decoration:none;
    font-size:13px;
    font-weight:800;
    transition:all .2s ease;
}

.spv2-support-btn-primary{
    background:linear-gradient(135deg,#3b82f6,#6366f1);
    color:#fff;
    box-shadow:0 8px 18px rgba(99,102,241,0.20);
}

.spv2-support-btn-primary:hover{
    background:#ffffff;
    color:#4f46e5;
    border:1px solid rgba(99,102,241,0.22);
}

.spv2-support-btn-secondary{
    background:#ffffff;
    color:#334155;
    border:1px solid rgba(148,163,184,0.14);
}

.spv2-support-btn-secondary:hover{
    background:#eef4ff;
    color:#0f172a;
    border-color:rgba(99,102,241,0.16);
}

@media (max-width: 900px){
    .spv2-support{
        grid-template-columns:1fr;
    }

    .spv2-support-actions{
        align-items:stretch;
    }
}
@media (max-width: 1024px){
  .spv2-sidebar{
    display:none;
  }
}
.spv2-mobile-tabs{
  display:none;
}

@media (max-width: 1024px){
  .spv2-mobile-tabs{
    display:flex;
    gap:8px;
    overflow-x:auto;
    padding:0 0 12px;
    margin-bottom:12px;
    scrollbar-width:none;
  }

  .spv2-mobile-tabs::-webkit-scrollbar{
    display:none;
  }

  .spv2-mobile-tabs a{
    flex:0 0 auto;
    white-space:nowrap;
    text-decoration:none;
    padding:10px 14px;
    border-radius:999px;
    background:#fff;
    border:1px solid rgba(148,163,184,0.14);
    color:#334155;
    font-size:13px;
    font-weight:800;
  }

  .spv2-mobile-tabs a.is-active{
    background:linear-gradient(135deg,#dbeafe,#ede9fe);
    color:#0f172a;
  }
}
/* =========================
   MOBILE SERVICE CARDS
   ========================= */

.spv2-mobile-service-list{
    display:none;
}

@media (max-width: 1024px){
    .spv2-table-wrap{
        display:none;
    }

    .spv2-mobile-service-list{
        display:grid;
        gap:12px;
        padding:14px;
    }

    .spv2-mobile-service-card{
        background:#ffffff;
        border:1px solid rgba(148,163,184,0.12);
        border-radius:18px;
        padding:14px;
        box-shadow:0 8px 20px rgba(15,23,42,0.04);
    }

    .spv2-mobile-service-top{
        display:flex;
        justify-content:flex-start;
        margin-bottom:12px;
    }

    .spv2-mobile-service-grid{
        display:grid;
        gap:12px;
    }

    .spv2-mobile-item{
        display:flex;
        flex-direction:column;
        gap:4px;
    }

    .spv2-mobile-label{
        font-size:11px;
        font-weight:800;
        letter-spacing:.04em;
        text-transform:uppercase;
        color:#64748b;
    }

    .spv2-mobile-value{
        font-size:14px;
        color:#334155;
        line-height:1.5;
        word-break:break-word;
    }

    .spv2-mobile-value-strong{
        font-weight:800;
        color:#0f172a;
    }

    .spv2-mobile-actions{
        display:flex;
        flex-wrap:wrap;
        gap:8px;
        margin-top:14px;
    }

    .spv2-mobile-actions .spv2-action-btn{
        min-width:84px;
    }
}


/* =========================
   MOBILE ORDER CARDS
   ========================= */

.spv2-mobile-orders-list{
    display:none;
}

@media (max-width: 1024px){
    .spv2-orders-table{
        display:none;
    }

    .spv2-mobile-orders-list{
        display:grid;
        gap:12px;
        padding:14px;
    }

    .spv2-mobile-order-card{
        background:#ffffff;
        border:1px solid rgba(148,163,184,0.12);
        border-radius:18px;
        padding:14px;
        box-shadow:0 8px 20px rgba(15,23,42,0.04);
    }

    .spv2-mobile-order-top{
        display:flex;
        align-items:center;
        justify-content:space-between;
        gap:10px;
        margin-bottom:14px;
    }

    .spv2-mobile-order-number{
        font-size:16px;
        font-weight:900;
        color:#0f172a;
        letter-spacing:-0.02em;
    }

    .spv2-mobile-order-grid{
        display:grid;
        gap:12px;
    }

    .spv2-mobile-order-extra.is-hidden{
        display:none;
    }

    
}

.spv2-table-card,
.spv2-stat-card,
.spv2-mobile-service-card,
.spv2-mobile-order-card{
    border:1px solid rgba(148,163,184,0.15);
    box-shadow:0 12px 30px rgba(15,23,42,0.06);
}


.spv2-section-actions{
    display:flex;
    align-items:center;
    gap:10px;
    flex-wrap:wrap;
}

.spv2-refresh-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:10px 14px;
    border-radius:12px;
    text-decoration:none;
    font-size:13px;
    font-weight:600;
    line-height:1;
    border:1px solid rgba(255,255,255,0.10);
    background:rgba(255,255,255,0.04);
    color:#fff;
    transition:all .2s ease;
}
.spv2-section-head{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:20px;
    flex-wrap:wrap;
}

/* container dial right side */
.spv2-section-actions{
    display:flex;
    align-items:center;
    gap:10px;
}

/* Live data badge */
.spv2-section-badge{
    padding:8px 14px;
    border-radius:999px;
    font-size:13px;
    font-weight:600;
    background:rgba(99,102,241,0.12);
    color:#4f46e5;
    border:1px solid rgba(99,102,241,0.25);
}

/* Refresh button (IMPORTANT) */
.spv2-refresh-btn{
    padding:8px 14px;
    border-radius:999px;
    font-size:13px;
    font-weight:600;
    text-decoration:none;
    border:1px solid #e5e7eb;
    background:#ffffff;
    color:#111827;
    transition:all .2s ease;
}

/* hover */
.spv2-refresh-btn:hover{
    background:#111827;
    color:#ffffff;
    border-color:#111827;
}