/* public/css/shopkeeper.css - Professional Compact SaaS Dashboard Theme */
@import url('https://cdn.jsdelivr.net/npm/bootstrap-icons@1.10.5/font/bootstrap-icons.css');
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

:root {
    --sidebar-w: 250px;
    --topbar-h: 64px;
    --sidebar-bg: #0f172a;
    --sidebar-hover: #1e293b;
    --sidebar-active: linear-gradient(135deg, #4f46e5, #6366f1);
    --primary: #4f46e5;
    --primary-hover: #4338ca;
    --primary-subtle: rgba(79, 70, 229, 0.08);
    --success: #10b981;
    --success-subtle: rgba(16, 185, 129, 0.08);
    --warning: #f59e0b;
    --warning-subtle: rgba(245, 158, 11, 0.08);
    --danger: #ef4444;
    --danger-subtle: rgba(239, 68, 68, 0.08);
    --body-bg: #f8fafc;
    --card-bg: #ffffff;
    --text-main: #0f172a;
    --text-muted: #64748b;
    --border-color: #e2e8f0;
    --radius: 10px;
    --radius-sm: 6px;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.05), 0 1px 2px rgba(0,0,0,0.03);
    --shadow-md: 0 4px 12px -2px rgba(0,0,0,0.06);
}

*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html, body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    background-color: var(--body-bg);
    color: var(--text-main);
    font-size: 13.5px;
    line-height: 1.5;
    min-height: 100vh;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* ── 4. Global Layout Structure ───────────────────────────── */
#shopkeeper-root {
    display: flex;
    min-height: 100vh;
    width: 100%;
    position: relative;
    overflow-x: hidden;
}

.sk-centered-login-wrapper,
.sk-centered-register-wrapper {
    width: 100% !important;
    min-height: 100vh !important;
    flex: 1 1 100% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin: 0 auto !important;
}

.sk-register-card {
    width: 100%;
    max-width: 1160px;
    background: #FFFFFF;
    border-radius: 20px;
    box-shadow: 0 24px 48px -15px rgba(15, 23, 42, 0.12), 0 0 0 1px rgba(226, 232, 240, 0.8);
    padding: 24px 32px;
    box-sizing: border-box;
}

.sk-register-3col-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin-bottom: 16px;
}

@media (max-width: 860px) {
    .sk-register-3col-grid {
        grid-template-columns: 1fr !important;
        gap: 12px !important;
    }
    .sk-register-card {
        padding: 16px 14px !important;
        max-width: 540px !important;
    }
}


/* ── 5. Sidebar Styling (250px) ───────────────────────────── */
.sk-sidebar {
    width: var(--sidebar-w);
    background: var(--sidebar-bg);
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    z-index: 1000;
    border-right: 1px solid #1e293b;
    transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

/* 6. Sidebar Logo / Header (64px) */
.sk-brand {
    height: var(--topbar-h);
    padding: 0 18px;
    border-bottom: 1px solid #1e293b;
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.sk-brand-icon {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: linear-gradient(135deg, #4f46e5, #6366f1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 18px;
    flex-shrink: 0;
    overflow: hidden;
}

.sk-brand-name {
    font-size: 13.5px;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.2;
}

.sk-brand-code {
    font-size: 10.5px;
    color: #64748b;
    font-family: ui-monospace, SFMono-Regular, monospace;
}

/* 7. Sidebar Navigation Links */
.sk-nav {
    flex: 1;
    overflow-y: auto;
    padding: 12px 10px;
    scrollbar-width: thin;
    scrollbar-color: #334155 transparent;
}

.sk-nav::-webkit-scrollbar {
    width: 4px;
}
.sk-nav::-webkit-scrollbar-thumb {
    background: #334155;
    border-radius: 4px;
}

.sk-nav-section-label {
    font-size: 10.5px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #475569;
    padding: 12px 12px 4px 12px;
}

.sk-nav-link {
    height: 44px;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 0 12px;
    border-radius: 10px;
    margin-bottom: 3px;
    color: #cbd5e1;
    font-size: 13.5px;
    font-weight: 500;
    cursor: pointer;
    border: none;
    background: transparent;
    width: 100%;
    text-align: left;
    transition: all 0.2s ease;
    font-family: inherit;
    text-decoration: none;
}

.sk-nav-link:hover {
    background: var(--sidebar-hover);
    color: #ffffff;
}

.sk-nav-link.active {
    background: var(--sidebar-active);
    color: #ffffff;
    font-weight: 600;
    box-shadow: 0 4px 14px rgba(79, 70, 229, 0.4);
}

.sk-nav-sub {
    margin-left: 20px;
    padding-left: 12px;
    border-left: 2px dashed rgba(99, 102, 241, 0.4);
    margin-top: 4px;
    margin-bottom: 8px;
    display: flex;
    flex-direction: column;
    gap: 3px;
    position: relative;
}

.sk-nav-sub .sk-nav-link {
    height: 36px;
    font-size: 12.5px;
    color: #94a3b8;
    border-radius: 8px;
    padding: 0 10px;
    background: rgba(255, 255, 255, 0.02);
    transition: all 0.2s ease;
}

.sk-nav-sub .sk-nav-link:hover {
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
    transform: translateX(3px);
}

.sk-nav-sub .sk-nav-link.active {
    background: rgba(99, 102, 241, 0.22);
    color: #a5b4fc;
    font-weight: 700;
    border-left: 3px solid #6366f1;
    box-shadow: 0 2px 8px rgba(99, 102, 241, 0.2);
}

.sk-nav-sub .sk-nav-icon {
    width: 22px;
    height: 22px;
    font-size: 11px;
    border-radius: 6px;
    opacity: 0.9;
}

/* ── Colorful Sidebar Menu Icon Badges ───────────────────── */
.sk-nav-icon {
    width: 30px;
    height: 30px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    flex-shrink: 0;
    transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.sk-nav-link:hover .sk-nav-icon {
    transform: scale(1.12);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}

.sk-nav-link.active .sk-nav-icon {
    background: rgba(255, 255, 255, 0.25) !important;
    color: #ffffff !important;
    border-color: rgba(255, 255, 255, 0.35) !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* Individual Icon Color Themes */
.nav-icon-dashboard {
    background: rgba(99, 102, 241, 0.2);
    color: #818cf8;
    border: 1px solid rgba(99, 102, 241, 0.35);
}

.nav-icon-shop {
    background: rgba(16, 185, 129, 0.2);
    color: #34d399;
    border: 1px solid rgba(16, 185, 129, 0.35);
}

.nav-icon-profile {
    background: rgba(56, 189, 248, 0.2);
    color: #38bdf8;
    border: 1px solid rgba(56, 189, 248, 0.35);
}

.nav-icon-qrcode {
    background: rgba(192, 132, 252, 0.2);
    color: #c084fc;
    border: 1px solid rgba(192, 132, 252, 0.35);
}

.nav-icon-printers {
    background: rgba(251, 191, 36, 0.2);
    color: #fbbf24;
    border: 1px solid rgba(251, 191, 36, 0.35);
}

.nav-icon-printpack {
    background: rgba(129, 140, 248, 0.2);
    color: #818cf8;
    border: 1px solid rgba(129, 140, 248, 0.35);
}

.nav-icon-plans {
    background: rgba(244, 114, 182, 0.2);
    color: #f472b6;
    border: 1px solid rgba(244, 114, 182, 0.35);
}

.nav-icon-wallet {
    background: rgba(52, 211, 153, 0.2);
    color: #34d399;
    border: 1px solid rgba(52, 211, 153, 0.35);
}

.nav-icon-referrals {
    background: rgba(251, 191, 36, 0.2);
    color: #fbbf24;
    border: 1px solid rgba(251, 191, 36, 0.35);
}

.nav-icon-history {
    background: rgba(56, 189, 248, 0.2);
    color: #38bdf8;
    border: 1px solid rgba(56, 189, 248, 0.35);
}

.nav-icon-pricing {
    background: rgba(251, 146, 60, 0.2);
    color: #fb923c;
    border: 1px solid rgba(251, 146, 60, 0.35);
}

.nav-icon-settings {
    background: rgba(244, 63, 94, 0.2);
    color: #f43f5e;
    border: 1px solid rgba(244, 63, 94, 0.35);
}

.nav-icon-admin {
    background: rgba(251, 191, 36, 0.2);
    color: #fbbf24;
    border: 1px solid rgba(251, 191, 36, 0.35);
}

/* 8 & 42. Sidebar User Profile Footer (Compact) */
.sk-sidebar-footer {
    height: 58px;
    padding: 0 14px;
    border-top: 1px solid #1e293b;
    background: #090d16;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    flex-shrink: 0;
}

.sk-avatar {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: linear-gradient(135deg, #4f46e5, #6366f1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    color: #ffffff;
    flex-shrink: 0;
    font-weight: 700;
}

.sk-user-name {
    font-size: 12px;
    font-weight: 600;
    color: #f8fafc;
}

.sk-user-role {
    font-size: 10px;
    color: #64748b;
}

.sk-logout-btn {
    background: transparent;
    border: 1px solid #334155;
    border-radius: 6px;
    color: #94a3b8;
    cursor: pointer;
    padding: 5px 8px;
    font-size: 14px;
    transition: all 0.15s ease;
}

.sk-logout-btn:hover {
    background: rgba(239, 68, 68, 0.15);
    border-color: #ef4444;
    color: #ef4444;
}

/* ── 9 & 10. Main Container & Topbar (64px) ───────────────── */
.sk-main {
    margin-left: var(--sidebar-w);
    flex: 1;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    width: calc(100% - var(--sidebar-w));
    min-width: 0;
}

.sk-topbar {
    height: var(--topbar-h);
    background: #ffffff;
    border-bottom: 1px solid var(--border-color);
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: sticky;
    top: 0;
    z-index: 900;
    box-shadow: 0 1px 2px rgba(0,0,0,0.03);
}

.sk-topbar-left {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 0;
}

.sk-menu-toggle {
    display: none;
    background: transparent;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    padding: 6px 10px;
    font-size: 16px;
    color: var(--text-main);
    cursor: pointer;
}

.sk-topbar-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-main);
    line-height: 1.2;
    margin: 0;
}

.sk-topbar-sub {
    font-size: 12px;
    color: var(--text-muted);
    line-height: 1.2;
}

.sk-topbar-right {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* 41. Agent Online Status Badge (32px) */
.sk-status-badge {
    height: 32px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 0 12px;
    border-radius: 9999px;
    font-size: 12px;
    font-weight: 600;
    white-space: nowrap;
}

.sk-status-online {
    background: var(--success-subtle);
    color: #059669;
    border: 1px solid rgba(16, 185, 129, 0.25);
}

.sk-status-offline {
    background: var(--danger-subtle);
    color: #dc2626;
    border: 1px solid rgba(239, 68, 68, 0.2);
}

/* ── 11. Main Content Area ────────────────────────────────── */
.sk-content {
    padding: 24px;
    flex: 1;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
}

/* ── 12. Dashboard Running Notice Banner (42-48px) ────────── */
.sk-notice-banner {
    min-height: 44px;
    height: 44px;
    background: linear-gradient(135deg, #fffbe6 0%, #fef3c7 100%);
    border: 1px solid #fde68a;
    border-left: 4px solid #f59e0b;
    border-radius: 10px;
    padding: 0 16px;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(245, 158, 11, 0.1);
}

.sk-notice-tag {
    background: linear-gradient(135deg, #d97706, #f59e0b);
    color: #ffffff;
    font-size: 11px;
    font-weight: 800;
    padding: 4px 10px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    gap: 4px;
    box-shadow: 0 2px 6px rgba(217, 119, 6, 0.25);
}

.sk-notice-scroll-wrap {
    flex: 1;
    overflow: hidden;
    white-space: nowrap;
    display: flex;
    align-items: center;
    min-width: 0;
}

.sk-notice-marquee {
    font-size: 13.5px;
    font-weight: 600;
    color: #92400e;
    display: inline-block;
    width: 100%;
}

/* ── Standard Card Layout Utilities ───────────── */
.sk-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    box-shadow: 0 2px 8px -2px rgba(15, 23, 42, 0.06);
    overflow: hidden;
    transition: all 0.2s ease;
}

.sk-card-body {
    padding: 20px 22px;
}

/* ── 13-18. Summary Metrics Cards (110-125px) ─────────────── */
/* ── 13-18. Vibrant Compact Summary Metric Cards ────────────── */
.sk-summary-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 10px;
    margin-bottom: 16px;
}

@media (max-width: 1024px) {
    .sk-summary-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 640px) {
    .sk-summary-grid { grid-template-columns: 1fr; }
}

.sk-summary-card {
    position: relative;
    border-radius: 10px;
    padding: 9px 12px;
    min-height: 98px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden;
    color: #ffffff;
    transition: transform 0.2s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.sk-summary-card:hover {
    transform: translateY(-2px);
}

.sk-card-glow {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 80px;
    height: 80px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.28) 0%, rgba(255, 255, 255, 0) 70%);
    pointer-events: none;
    border-radius: 50%;
}

/* Card Gradient Themes */
.sk-summary-card.wallet {
    background: linear-gradient(135deg, #059669 0%, #10b981 50%, #0d9488 100%);
    box-shadow: 0 4px 14px -3px rgba(16, 185, 129, 0.38), 0 0 1px 1px rgba(255, 255, 255, 0.15) inset;
}

.sk-summary-card.wallet:hover {
    box-shadow: 0 8px 20px -3px rgba(16, 185, 129, 0.48);
}

.sk-summary-card.pack {
    background: linear-gradient(135deg, #4338ca 0%, #6366f1 50%, #8b5cf6 100%);
    box-shadow: 0 4px 14px -3px rgba(99, 102, 241, 0.38), 0 0 1px 1px rgba(255, 255, 255, 0.15) inset;
}

.sk-summary-card.pack:hover {
    box-shadow: 0 8px 20px -3px rgba(99, 102, 241, 0.48);
}

.sk-summary-card.prints {
    background: linear-gradient(135deg, #d97706 0%, #f59e0b 50%, #ea580c 100%);
    box-shadow: 0 4px 14px -3px rgba(245, 158, 11, 0.38), 0 0 1px 1px rgba(255, 255, 255, 0.15) inset;
}

.sk-summary-card.prints:hover {
    box-shadow: 0 8px 20px -3px rgba(245, 158, 11, 0.48);
}

.sk-summary-card.agent {
    background: linear-gradient(135deg, #0284c7 0%, #06b6d4 50%, #3b82f6 100%);
    box-shadow: 0 4px 14px -3px rgba(2, 132, 199, 0.38), 0 0 1px 1px rgba(255, 255, 255, 0.15) inset;
}

.sk-summary-card.agent:hover {
    box-shadow: 0 8px 20px -3px rgba(2, 132, 199, 0.48);
}

/* Card Elements */
.sk-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 6px;
}

.sk-card-label {
    font-size: 10.5px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    color: rgba(255, 255, 255, 0.95);
    display: flex;
    align-items: center;
    gap: 5px;
}

.sk-card-icon-avatar {
    width: 24px;
    height: 24px;
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.22);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    color: #ffffff;
    flex-shrink: 0;
}

.sk-card-badge {
    font-size: 9.5px;
    font-weight: 700;
    padding: 1.5px 6px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.22);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.3);
    white-space: nowrap;
}

.sk-card-badge.status-online {
    background: rgba(16, 185, 129, 0.35);
    border-color: rgba(255, 255, 255, 0.4);
}

.sk-card-badge.status-offline {
    background: rgba(239, 68, 68, 0.35);
    border-color: rgba(255, 255, 255, 0.4);
}

.sk-card-main-val {
    font-size: 19px;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.1;
    letter-spacing: -0.4px;
    margin-top: 3px;
}

.sk-card-sub {
    font-size: 10.5px;
    color: rgba(255, 255, 255, 0.88);
    margin-top: 1px;
}

.sk-card-bottom {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 6px;
    margin-top: 4px;
    padding-top: 4px;
    border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.sk-card-btn {
    height: 24px;
    padding: 0 9px;
    border-radius: 6px;
    font-size: 10.5px;
    font-weight: 700;
    cursor: pointer;
    border: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.15s ease;
    text-decoration: none;
    font-family: inherit;
}

.sk-card-btn.primary {
    background: #ffffff;
    color: #0f172a;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.12);
}

.sk-card-btn.primary:hover {
    background: #f8fafc;
    transform: translateY(-1px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.18);
}

.sk-card-btn.secondary {
    background: rgba(255, 255, 255, 0.2);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.35);
    backdrop-filter: blur(4px);
}

.sk-card-btn.secondary:hover {
    background: rgba(255, 255, 255, 0.35);
}

/* ── 19. Quick Actions Bar (36-40px buttons) ──────────────── */
.sk-quick-bar {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    padding: 12px 18px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
}

.sk-quick-title {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 6px;
}

.sk-quick-actions-list {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.sk-quick-btn {
    height: 36px;
    padding: 0 14px;
    border-radius: var(--radius-sm);
    background: #ffffff;
    border: 1px solid var(--border-color);
    color: var(--text-main);
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: all 0.15s ease;
    text-decoration: none;
    font-family: inherit;
}

.sk-quick-btn i {
    font-size: 15px;
}

.sk-quick-btn:hover {
    background: #f8fafc;
    border-color: #cbd5e1;
    color: var(--primary);
    transform: translateY(-1px);
}

/* ── 20-24. Live Print Queue Cards (75-80px Height) ────────── */
.sk-queue-section {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    margin-bottom: 20px;
    overflow: hidden;
}

.sk-section-header {
    padding: 14px 18px;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #ffffff;
}

.sk-section-title {
    font-size: 15px;
    font-weight: 700;
    color: var(--text-main);
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0;
}

.sk-section-body {
    padding: 14px 18px;
}

.sk-queue-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.sk-queue-item {
    height: 76px;
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 0 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.sk-queue-item:hover {
    border-color: #cbd5e1;
    box-shadow: var(--shadow-sm);
}

.sk-queue-item.queued   { border-left: 4px solid #4f46e5; }
.sk-queue-item.printing { border-left: 4px solid #f59e0b; }
.sk-queue-item.failed   { border-left: 4px solid #ef4444; }
.sk-queue-item.printed  { border-left: 4px solid #10b981; }

.sk-item-left {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 0;
    flex: 1;
}

.sk-item-icon {
    font-size: 24px;
    color: var(--primary);
    flex-shrink: 0;
}

.sk-item-details {
    min-width: 0;
    flex: 1;
}

.sk-item-name {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-main);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.sk-item-meta {
    font-size: 12px;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 2px;
}

.sk-item-meta span {
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.sk-item-right {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

/* 23. Status Pills */
.sk-status-pill {
    font-size: 11px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 9999px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.sk-status-pill.queued   { background: var(--primary-subtle); color: #4f46e5; }
.sk-status-pill.printing { background: var(--warning-subtle); color: #d97706; }
.sk-status-pill.printed  { background: var(--success-subtle); color: #059669; }
.sk-status-pill.failed   { background: var(--danger-subtle); color: #dc2626; }

/* 24. Action Button */
.btn-mark-printed {
    height: 34px;
    padding: 0 12px;
    font-size: 12px;
    font-weight: 600;
    border-radius: 6px;
    background: var(--primary);
    color: #ffffff;
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: background 0.15s ease;
}

.btn-mark-printed:hover {
    background: var(--primary-hover);
}

.btn-mark-printed:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* ── 29. Tables Styling ────────────────────────────────────── */
.sk-table-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
}

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

.sk-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 13px;
    text-align: left;
}

.sk-table th {
    background: #f8fafc;
    padding: 10px 14px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-muted);
    border-bottom: 1px solid var(--border-color);
    white-space: nowrap;
}

.sk-table td {
    padding: 12px 14px;
    border-bottom: 1px solid #f1f5f9;
    color: var(--text-main);
    vertical-align: middle;
}

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

.sk-table tbody tr:hover td {
    background: #f8fafc;
}

/* ── Standard Badges & Buttons ────────────────────────────── */
.badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 3px 8px;
    border-radius: 9999px;
    font-size: 11px;
    font-weight: 600;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    border: 1px solid transparent;
    transition: all 0.15s ease;
    text-decoration: none;
    font-family: inherit;
    white-space: nowrap;
}

.btn-primary {
    background: var(--primary);
    color: #ffffff;
}

.btn-primary:hover {
    background: var(--primary-hover);
}

.btn-outline-primary {
    background: transparent;
    border-color: var(--primary);
    color: var(--primary);
}

.btn-outline-primary:hover {
    background: var(--primary-subtle);
}

.btn-sm {
    height: 32px;
    padding: 0 10px;
    font-size: 12px;
}

.btn-link {
    background: transparent;
    border: none;
    color: var(--primary);
    padding: 0;
    font-size: 12px;
    cursor: pointer;
}

.btn-link:hover {
    text-decoration: underline;
}

/* ── Form Inputs ──────────────────────────────────────────── */
.sk-form-group {
    margin-bottom: 14px;
}

.sk-label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    color: var(--text-muted);
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.sk-input, .sk-select {
    width: 100%;
    height: 38px;
    padding: 0 12px;
    border-radius: 6px;
    font-size: 13.5px;
    border: 1px solid var(--border-color);
    background: #ffffff;
    color: var(--text-main);
    font-family: inherit;
    outline: none;
    transition: border-color 0.15s ease;
}

.sk-input:focus, .sk-select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.1);
}

/* Empty State & Spinner */
.empty-state {
    text-align: center;
    padding: 32px 16px;
    color: var(--text-muted);
}

.empty-state i {
    font-size: 36px;
    opacity: 0.4;
    margin-bottom: 8px;
    display: block;
}

.spinner {
    animation: spin 0.8s linear infinite;
    display: inline-block;
}

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

/* Truncate Utility */
.truncate {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* ── Mobile Sidebar Drawer & Backdrop (26 & 27) ───────────── */
.sk-sidebar-backdrop {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.5);
    backdrop-filter: blur(2px);
    z-index: 999;
}

/* ── 26. Responsive Breakpoints ───────────────────────────── */

/* Desktop Large (≥ 1200px) */
@media (min-width: 1200px) {
    .sk-summary-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

/* Tablet (768px - 1199px) */
@media (min-width: 768px) and (max-width: 1199px) {
    .sk-summary-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

/* Mobile (< 768px) */
@media (max-width: 767px) {
    .sk-menu-toggle {
        display: block;
    }

    .sk-sidebar {
        transform: translateX(-100%);
    }

    .sk-sidebar.open {
        transform: translateX(0);
    }

    .sk-sidebar-backdrop.open {
        display: block;
    }

    .sk-main {
        margin-left: 0;
        width: 100%;
    }

    .sk-content {
        padding: 16px;
    }

    .sk-topbar {
        padding: 0 16px;
    }

    .sk-summary-grid {
        grid-template-columns: 1fr;
    }

    .sk-quick-bar {
        flex-direction: column;
        align-items: flex-start;
    }

    .sk-queue-item {
        height: auto;
        padding: 12px 14px;
        flex-direction: column;
        align-items: flex-start;
    }

    .sk-item-right {
        width: 100%;
        justify-content: space-between;
        margin-top: 8px;
    }
}

/* ── 27. Modern Shopkeeper Login Page Redesign ─────────────── */
.sk-login-page {
    min-height: 100vh;
    width: 100%;
    background: radial-gradient(circle at 15% 20%, rgba(99, 102, 241, 0.18) 0%, transparent 45%),
                radial-gradient(circle at 85% 80%, rgba(139, 92, 246, 0.15) 0%, transparent 45%),
                linear-gradient(135deg, #090d16 0%, #0f172a 50%, #1e1b4b 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px 20px;
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    color: #0f172a;
    position: relative;
    overflow-x: hidden;
}

.sk-login-wrapper {
    width: 100%;
    max-width: 1040px;
    margin: 0 auto;
    position: relative;
    z-index: 10;
}

/* Header Navbar inside Login Page */
.sk-login-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
    padding: 0 4px;
}

.sk-login-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.sk-login-brand-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: linear-gradient(135deg, #6366f1 0%, #4f46e5 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 22px;
    box-shadow: 0 8px 20px rgba(99, 102, 241, 0.4);
}

.sk-login-brand-text {
    display: flex;
    align-items: center;
    gap: 8px;
}

.sk-login-brand-text .brand-title {
    font-size: 22px;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: -0.5px;
}

.sk-login-brand-text .brand-title strong {
    color: #818cf8;
}

.sk-login-brand-text .brand-badge {
    font-size: 10.5px;
    font-weight: 800;
    background: linear-gradient(135deg, #ec4899, #8b5cf6);
    color: #ffffff;
    padding: 3px 8px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.sk-header-back-link {
    color: #94a3b8;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    padding: 8px 16px;
    border-radius: 9999px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.2s ease;
}

.sk-header-back-link:hover {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.2);
}

/* Card Container Split Grid */
.sk-login-card-container {
    display: grid;
    grid-template-columns: 1fr 1.05fr;
    background: rgba(15, 23, 42, 0.85);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 30px 60px -12px rgba(0, 0, 0, 0.55), 0 0 1px 1px rgba(255, 255, 255, 0.05);
    overflow: hidden;
}

/* Left Hero Sidebar */
.sk-login-hero {
    padding: 44px 40px;
    background: linear-gradient(145deg, rgba(79, 70, 229, 0.22) 0%, rgba(15, 23, 42, 0.7) 100%);
    border-right: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.sk-hero-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(99, 102, 241, 0.2);
    color: #a5b4fc;
    border: 1px solid rgba(99, 102, 241, 0.35);
    font-size: 12px;
    font-weight: 700;
    padding: 6px 14px;
    border-radius: 30px;
    margin-bottom: 20px;
}

.sk-hero-title {
    font-size: 26px;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.3;
    letter-spacing: -0.5px;
    margin-bottom: 12px;
}

.sk-hero-sub {
    font-size: 13.5px;
    color: #94a3b8;
    line-height: 1.6;
    margin-bottom: 32px;
}

.sk-hero-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.sk-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.sk-feature-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(99, 102, 241, 0.15);
    border: 1px solid rgba(99, 102, 241, 0.25);
    color: #a5b4fc;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.sk-feature-item h4 {
    font-size: 14px;
    font-weight: 700;
    color: #f8fafc;
    margin: 0 0 3px 0;
}

.sk-feature-item p {
    font-size: 12px;
    color: #64748b;
    line-height: 1.45;
    margin: 0;
}

.sk-hero-footer-status {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: #94a3b8;
    margin-top: 36px;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.sk-status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #10b981;
    box-shadow: 0 0 10px #10b981;
}

/* Right Login Form Card */
.sk-login-form-card {
    padding: 44px 40px;
    background: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.sk-form-header {
    text-align: center;
    margin-bottom: 24px;
}

.sk-icon-avatar {
    width: 52px;
    height: 52px;
    border-radius: 16px;
    background: rgba(79, 70, 229, 0.1);
    color: #4f46e5;
    font-size: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 14px auto;
}

.sk-form-title {
    font-size: 22px;
    font-weight: 800;
    color: #0f172a;
    letter-spacing: -0.5px;
    margin-bottom: 4px;
}

.sk-form-subtitle {
    font-size: 13px;
    color: #64748b;
    margin: 0;
}

/* Alert Notification */
.sk-login-alert {
    padding: 12px 14px;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    position: relative;
    animation: fadeIn 0.2s ease;
}

.sk-alert-danger {
    background: #fef2f2;
    border: 1px solid #fecaca;
    color: #dc2626;
}

.sk-alert-close {
    background: transparent;
    border: none;
    font-size: 18px;
    line-height: 1;
    color: currentColor;
    cursor: pointer;
    margin-left: auto;
    opacity: 0.7;
}

.sk-alert-close:hover { opacity: 1; }

/* Form Fields & Custom Inputs */
.sk-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.sk-input-field {
    display: flex;
    flex-direction: column;
}

.sk-input-label {
    font-size: 12px;
    font-weight: 700;
    color: #334155;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-bottom: 6px;
}

.sk-input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.sk-input-icon {
    position: absolute;
    left: 14px;
    font-size: 17px;
    color: #94a3b8;
    pointer-events: none;
    transition: color 0.2s ease;
}

.sk-custom-input {
    width: 100%;
    height: 44px;
    padding: 0 42px;
    border-radius: 10px;
    border: 1.5px solid #cbd5e1;
    background: #ffffff;
    font-size: 14px;
    color: #0f172a;
    outline: none;
    transition: all 0.2s ease;
    font-family: inherit;
}

.sk-custom-input:focus {
    border-color: #4f46e5;
    box-shadow: 0 0 0 4px rgba(79, 70, 229, 0.12);
}

.sk-custom-input:focus + .sk-input-icon,
.sk-input-wrapper:focus-within .sk-input-icon {
    color: #4f46e5;
}

.sk-password-toggle {
    position: absolute;
    right: 12px;
    background: transparent;
    border: none;
    color: #94a3b8;
    font-size: 16px;
    cursor: pointer;
    padding: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.2s ease;
}

.sk-password-toggle:hover {
    color: #4f46e5;
}

.sk-link-sm {
    font-size: 12px;
    color: #4f46e5;
    text-decoration: none;
    font-weight: 600;
}

.sk-link-sm:hover {
    text-decoration: underline;
}

/* Remember Me Checkbox */
.sk-form-options {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: -2px;
}

.sk-checkbox-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: #475569;
    cursor: pointer;
    user-select: none;
}

.sk-checkbox-label input[type="checkbox"] {
    width: 16px;
    height: 16px;
    accent-color: #4f46e5;
    border-radius: 4px;
    cursor: pointer;
}

/* Primary Action Submit Button */
.btn-sk-submit {
    height: 46px;
    width: 100%;
    border-radius: 12px;
    background: linear-gradient(135deg, #4f46e5 0%, #6366f1 100%);
    color: #ffffff;
    font-size: 14px;
    font-weight: 700;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 20px rgba(79, 70, 229, 0.35);
    transition: all 0.2s ease;
    margin-top: 6px;
}

.btn-sk-submit:hover:not(:disabled) {
    background: linear-gradient(135deg, #4338ca 0%, #4f46e5 100%);
    box-shadow: 0 12px 24px rgba(79, 70, 229, 0.45);
    transform: translateY(-1px);
}

.btn-sk-submit:active:not(:disabled) {
    transform: translateY(0);
}

.btn-sk-submit:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

/* Demo Credentials Box */
.sk-demo-box {
    margin-top: 24px;
    background: #f8fafc;
    border: 1px dashed #cbd5e1;
    border-radius: 12px;
    padding: 12px 14px;
    transition: all 0.2s ease;
}

.sk-demo-box:hover {
    background: #f1f5f9;
    border-color: #94a3b8;
}

.sk-demo-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 8px;
}

.sk-demo-badge {
    font-size: 11.5px;
    font-weight: 700;
    color: #475569;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.sk-fill-toast {
    font-size: 11px;
    font-weight: 700;
    color: #059669;
    background: #d1fae5;
    padding: 2px 8px;
    border-radius: 10px;
    animation: fadeIn 0.2s ease;
}

.sk-demo-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.sk-demo-cred {
    font-size: 12.5px;
    color: #334155;
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.sk-demo-cred code {
    background: #e2e8f0;
    color: #0f172a;
    padding: 2px 6px;
    border-radius: 4px;
    font-family: ui-monospace, SFMono-Regular, monospace;
    font-size: 12px;
}

.sk-btn-fill {
    height: 30px;
    padding: 0 10px;
    font-size: 11.5px;
    font-weight: 700;
    background: #ffffff;
    border: 1px solid #cbd5e1;
    color: #4f46e5;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.15s ease;
    white-space: nowrap;
}

.sk-btn-fill:hover {
    background: #4f46e5;
    border-color: #4f46e5;
    color: #ffffff;
}

/* Footer Navigation Links */
.sk-login-footer-links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 24px;
    padding-top: 16px;
    border-top: 1px solid #e2e8f0;
}

.sk-foot-link {
    font-size: 12.5px;
    font-weight: 600;
    color: #64748b;
    text-decoration: none;
    transition: color 0.15s ease;
}

.sk-foot-link:hover {
    color: #4f46e5;
}

.sk-foot-sep {
    color: #cbd5e1;
    font-size: 12px;
}

/* Responsive Styles for Login Page */
@media (max-width: 920px) {
    .sk-login-card-container {
        grid-template-columns: 1fr;
    }

    .sk-login-hero {
        padding: 28px 24px;
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }

    .sk-hero-title {
        font-size: 22px;
    }

    .sk-login-form-card {
        padding: 32px 24px;
    }
}

@media (max-width: 480px) {
    .sk-login-page {
        padding: 16px 12px;
    }

    .sk-login-hero {
        display: none; /* Hide heavy hero section on small phone screens for instant clean login experience */
    }

    .sk-login-form-card {
        padding: 24px 18px;
        border-radius: 20px;
    }
}

/* ── Topbar User Profile Avatar Trigger & Dropdown Menu ──── */
.sk-topbar-user-trigger {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 4px 10px 4px 4px;
    border-radius: 9999px;
    background: #f1f5f9;
    border: 1px solid #cbd5e1;
    cursor: pointer;
    transition: all 0.2s ease;
    user-select: none;
}

.sk-topbar-user-trigger:hover {
    background: #e2e8f0;
    border-color: #94a3b8;
}

.sk-topbar-avatar {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: linear-gradient(135deg, #4f46e5, #6366f1);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
}

.sk-topbar-user-name {
    font-size: 12.5px;
    font-weight: 700;
    color: #0f172a;
    max-width: 120px;
}

.sk-user-dropdown-backdrop {
    position: fixed;
    inset: 0;
    z-index: 1100;
}

.sk-user-dropdown-card {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    width: 260px;
    background: #ffffff;
    border-radius: 16px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.18), 0 0 0 1px rgba(0, 0, 0, 0.04);
    padding: 14px;
    z-index: 1200;
    animation: dropdownFadeIn 0.18s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.sk-user-dropdown-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.sk-dropdown-avatar {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: linear-gradient(135deg, #4f46e5, #6366f1);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.sk-dropdown-name {
    font-size: 14px;
    font-weight: 700;
    color: #0f172a;
    line-height: 1.2;
}

.sk-dropdown-email {
    font-size: 11.5px;
    color: #64748b;
    line-height: 1.2;
    margin-top: 1px;
}

.sk-dropdown-role-badge {
    display: inline-block;
    font-size: 10px;
    font-weight: 800;
    background: rgba(79, 70, 229, 0.1);
    color: #4f46e5;
    padding: 2px 8px;
    border-radius: 10px;
    margin-top: 4px;
    text-transform: uppercase;
}

.sk-dropdown-ip-box {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 6px 10px;
    font-size: 11.5px;
    color: #334155;
    display: flex;
    align-items: center;
    gap: 4px;
    margin-bottom: 8px;
}

.sk-dropdown-divider {
    height: 1px;
    background: #f1f5f9;
    margin: 8px -14px;
}

.sk-dropdown-item {
    width: 100%;
    height: 36px;
    padding: 0 10px;
    border-radius: 8px;
    background: transparent;
    border: none;
    display: flex;
    align-items: center;
    font-size: 13px;
    font-weight: 500;
    color: #334155;
    cursor: pointer;
    transition: background 0.15s ease;
    text-align: left;
    font-family: inherit;
}

.sk-dropdown-item:hover {
    background: #f1f5f9;
    color: #0f172a;
}

/* ── Modal Dialog Styles ─────────────────────────────────── */
.sk-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(15, 23, 42, 0.65);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    animation: skFadeIn 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes skFadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.sk-modal {
    background: #ffffff;
    border-radius: 16px;
    padding: 24px 28px;
    width: 100%;
    max-width: 500px;
    box-shadow: 0 20px 50px rgba(15, 23, 42, 0.25), 0 0 0 1px rgba(0,0,0,0.05);
    animation: skSlideUp 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
}

@keyframes skSlideUp {
    from { transform: translateY(24px) scale(0.97); opacity: 0; }
    to { transform: translateY(0) scale(1); opacity: 1; }
}

.sk-modal-title {
    font-size: 18px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding-bottom: 14px;
    border-bottom: 1px solid #f1f5f9;
}

.sk-form-group {
    margin-bottom: 16px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.sk-label {
    font-size: 12.5px;
    font-weight: 700;
    color: #475569;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.sk-input, .sk-select {
    width: 100%;
    height: 42px;
    padding: 0 14px;
    border-radius: 10px;
    border: 1px solid #cbd5e1;
    background: #f8fafc;
    font-size: 14px;
    color: #0f172a;
    outline: none;
    transition: all 0.15s ease;
}

.sk-input:focus, .sk-select:focus {
    border-color: #6366f1;
    background: #ffffff;
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.15);
}

.row-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.sk-modal-footer {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
    margin-top: 24px;
    padding-top: 18px;
    border-top: 1px solid #f1f5f9;
}



