/* =============================================
   SalonPro - Modern Black & White Design
   ============================================= */

:root {
    --sp-black: #0a0a0a;
    --sp-dark: #1a1a1a;
    --sp-gray-900: #212121;
    --sp-gray-800: #2d2d2d;
    --sp-gray-700: #404040;
    --sp-gray-600: #525252;
    --sp-gray-500: #737373;
    --sp-gray-400: #a3a3a3;
    --sp-gray-300: #d4d4d4;
    --sp-gray-200: #e5e5e5;
    --sp-gray-100: #f0f0f0;
    --sp-gray-50: #f7f7f7;
    --sp-white: #ffffff;

    --sp-accent: #0a0a0a;
    --sp-accent-hover: #262626;
    --sp-success: #16a34a;
    --sp-danger: #dc2626;
    --sp-warning: #f59e0b;
    --sp-info: #2563eb;

    --sp-sidebar-width: 260px;
    --sp-sidebar-collapsed: 72px;
    --sp-topbar-height: 64px;

    --sp-radius: 10px;
    --sp-radius-sm: 6px;
    --sp-radius-lg: 16px;
    --sp-shadow: 0 1px 3px rgba(0,0,0,.06), 0 1px 2px rgba(0,0,0,.04);
    --sp-shadow-md: 0 4px 6px rgba(0,0,0,.07), 0 2px 4px rgba(0,0,0,.04);
    --sp-shadow-lg: 0 10px 15px rgba(0,0,0,.08), 0 4px 6px rgba(0,0,0,.04);

    --sp-font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --sp-font-mono: 'JetBrains Mono', 'Fira Code', monospace;
}

/* =============================================
   GLOBAL RESET & BASE
   ============================================= */
*, *::before, *::after { box-sizing: border-box; }

body {
    font-family: var(--sp-font);
    background: var(--sp-gray-50);
    color: var(--sp-dark);
    font-size: 14px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a { color: var(--sp-black); text-decoration: none; }
a:hover { color: var(--sp-gray-700); }

/* =============================================
   SCROLLBAR
   ============================================= */
::-webkit-scrollbar { width: 6px; height: 6px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: var(--sp-gray-300); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--sp-gray-400); }

/* =============================================
   SIDEBAR
   ============================================= */
.sp-sidebar {
    position: fixed;
    left: 0;
    top: 0;
    bottom: 0;
    width: var(--sp-sidebar-width);
    background: var(--sp-black);
    color: var(--sp-white);
    z-index: 1040;
    display: flex;
    flex-direction: column;
    transition: transform .3s ease;
    overflow-y: auto;
}

.sp-sidebar-brand {
    padding: 20px 24px;
    display: flex;
    align-items: center;
    gap: 12px;
    border-bottom: 1px solid rgba(255,255,255,.08);
}

.sp-sidebar-brand-icon {
    width: 36px;
    height: 36px;
    background: var(--sp-white);
    color: var(--sp-black);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 14px;
    flex-shrink: 0;
}

.sp-sidebar-brand h1 {
    font-size: 16px;
    font-weight: 700;
    margin: 0;
    letter-spacing: -.3px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.sp-sidebar-brand small {
    display: block;
    font-size: 11px;
    color: var(--sp-gray-500);
    font-weight: 400;
}

.sp-sidebar-nav {
    padding: 12px 12px;
    flex: 1;
}

.sp-sidebar-nav .nav-section {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    color: var(--sp-gray-600);
    padding: 16px 12px 6px;
    font-weight: 600;
}

.sp-sidebar-nav .nav-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 12px;
    color: var(--sp-gray-400);
    border-radius: var(--sp-radius-sm);
    font-size: 13.5px;
    font-weight: 500;
    transition: all .15s ease;
    margin-bottom: 2px;
}

.sp-sidebar-nav .nav-link:hover {
    color: var(--sp-white);
    background: rgba(255,255,255,.06);
}

.sp-sidebar-nav .nav-link.active {
    color: var(--sp-white);
    background: rgba(255,255,255,.1);
    font-weight: 600;
}

.sp-sidebar-nav .nav-link i {
    width: 20px;
    text-align: center;
    font-size: 16px;
    opacity: .7;
}

.sp-sidebar-nav .nav-link.active i {
    opacity: 1;
}

.sp-sidebar-user {
    padding: 16px;
    border-top: 1px solid rgba(255,255,255,.08);
    display: flex;
    align-items: center;
    gap: 10px;
}

.sp-sidebar-user-avatar {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: var(--sp-gray-700);
    color: var(--sp-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
    flex-shrink: 0;
}

.sp-sidebar-user-info {
    flex: 1;
    min-width: 0;
}

.sp-sidebar-user-info .name {
    font-size: 13px;
    font-weight: 600;
    color: var(--sp-white);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.sp-sidebar-user-info .role {
    font-size: 11px;
    color: var(--sp-gray-500);
    text-transform: capitalize;
}

/* =============================================
   MAIN CONTENT
   ============================================= */
.sp-main {
    margin-left: var(--sp-sidebar-width);
    min-height: 100vh;
    transition: margin .3s ease;
}

.sp-topbar {
    height: var(--sp-topbar-height);
    background: var(--sp-white);
    border-bottom: 1px solid var(--sp-gray-200);
    display: flex;
    align-items: center;
    padding: 0 28px;
    position: sticky;
    top: 0;
    z-index: 1030;
}

.sp-topbar-title {
    font-size: 18px;
    font-weight: 700;
    letter-spacing: -.3px;
    color: var(--sp-black);
}

.sp-topbar-actions {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 8px;
}

.sp-content {
    padding: 28px;
}

/* =============================================
   CARDS
   ============================================= */
.sp-card {
    background: var(--sp-white);
    border-radius: var(--sp-radius-lg);
    border: 1px solid var(--sp-gray-200);
    overflow: hidden;
}

.sp-card-header {
    padding: 20px 24px;
    border-bottom: 1px solid var(--sp-gray-100);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.sp-card-header h3 {
    font-size: 15px;
    font-weight: 700;
    margin: 0;
    letter-spacing: -.2px;
}

.sp-card-body {
    padding: 24px;
}

.sp-card-footer {
    padding: 16px 24px;
    border-top: 1px solid var(--sp-gray-100);
    background: var(--sp-gray-50);
}

/* =============================================
   STAT CARDS (Dashboard)
   ============================================= */
.sp-stat-card {
    background: var(--sp-white);
    border-radius: var(--sp-radius-lg);
    border: 1px solid var(--sp-gray-200);
    padding: 24px;
    transition: all .2s ease;
}

.sp-stat-card:hover {
    box-shadow: var(--sp-shadow-md);
    transform: translateY(-1px);
}

.sp-stat-card .stat-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin-bottom: 16px;
}

.sp-stat-card .stat-icon.black { background: var(--sp-black); color: var(--sp-white); }
.sp-stat-card .stat-icon.success { background: #dcfce7; color: var(--sp-success); }
.sp-stat-card .stat-icon.warning { background: #fef3c7; color: var(--sp-warning); }
.sp-stat-card .stat-icon.info { background: #dbeafe; color: var(--sp-info); }

.sp-stat-card .stat-value {
    font-size: 28px;
    font-weight: 800;
    letter-spacing: -1px;
    color: var(--sp-black);
    line-height: 1;
    margin-bottom: 4px;
}

.sp-stat-card .stat-label {
    font-size: 13px;
    color: var(--sp-gray-500);
    font-weight: 500;
}

/* =============================================
   BUTTONS
   ============================================= */
.sp-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 18px;
    font-size: 13px;
    font-weight: 600;
    border-radius: var(--sp-radius-sm);
    border: none;
    cursor: pointer;
    transition: all .15s ease;
    white-space: nowrap;
    font-family: var(--sp-font);
}

.sp-btn-primary {
    background: var(--sp-black);
    color: var(--sp-white);
}
.sp-btn-primary:hover {
    background: var(--sp-accent-hover);
    color: var(--sp-white);
}

.sp-btn-outline {
    background: transparent;
    color: var(--sp-black);
    border: 1.5px solid var(--sp-gray-300);
}
.sp-btn-outline:hover {
    border-color: var(--sp-black);
    color: var(--sp-black);
}

.sp-btn-success {
    background: var(--sp-success);
    color: var(--sp-white);
}
.sp-btn-success:hover { background: #15803d; color: var(--sp-white); }

.sp-btn-danger {
    background: var(--sp-danger);
    color: var(--sp-white);
}
.sp-btn-danger:hover { background: #b91c1c; color: var(--sp-white); }

.sp-btn-ghost {
    background: transparent;
    color: var(--sp-gray-600);
    padding: 8px 12px;
}
.sp-btn-ghost:hover { background: var(--sp-gray-100); color: var(--sp-black); }

.sp-btn-lg { padding: 12px 24px; font-size: 15px; border-radius: var(--sp-radius); }
.sp-btn-sm { padding: 6px 12px; font-size: 12px; }
.sp-btn-block { width: 100%; justify-content: center; }

/* =============================================
   FORMS
   ============================================= */
.sp-form-group {
    margin-bottom: 20px;
}

.sp-form-label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--sp-gray-700);
    margin-bottom: 6px;
}

.sp-form-control {
    display: block;
    width: 100%;
    padding: 10px 14px;
    font-size: 14px;
    font-family: var(--sp-font);
    color: var(--sp-dark);
    background: var(--sp-white);
    border: 1.5px solid var(--sp-gray-300);
    border-radius: var(--sp-radius-sm);
    transition: border-color .15s ease, box-shadow .15s ease;
    outline: none;
}

.sp-form-control:focus {
    border-color: var(--sp-black);
    box-shadow: 0 0 0 3px rgba(0,0,0,.08);
}

.sp-form-control::placeholder {
    color: var(--sp-gray-400);
}

.sp-form-control.is-invalid {
    border-color: var(--sp-danger);
}

.sp-form-hint {
    font-size: 12px;
    color: var(--sp-gray-500);
    margin-top: 4px;
}

.sp-form-error {
    font-size: 12px;
    color: var(--sp-danger);
    margin-top: 4px;
}

select.sp-form-control {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23737373' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    padding-right: 36px;
}

/* =============================================
   TABLE
   ============================================= */
.sp-table {
    width: 100%;
    border-collapse: collapse;
}

.sp-table thead th {
    padding: 12px 16px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .8px;
    color: var(--sp-gray-500);
    border-bottom: 1px solid var(--sp-gray-200);
    text-align: left;
    white-space: nowrap;
}

.sp-table tbody td {
    padding: 14px 16px;
    font-size: 13.5px;
    border-bottom: 1px solid var(--sp-gray-100);
    vertical-align: middle;
}

.sp-table tbody tr:hover {
    background: var(--sp-gray-50);
}

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

/* =============================================
   BADGE
   ============================================= */
.sp-badge {
    display: inline-flex;
    align-items: center;
    padding: 3px 10px;
    font-size: 11px;
    font-weight: 600;
    border-radius: 20px;
    letter-spacing: .2px;
}

.sp-badge-success { background: #dcfce7; color: #166534; }
.sp-badge-danger { background: #fee2e2; color: #991b1b; }
.sp-badge-warning { background: #fef3c7; color: #92400e; }
.sp-badge-info { background: #dbeafe; color: #1e40af; }
.sp-badge-neutral { background: var(--sp-gray-100); color: var(--sp-gray-600); }

/* =============================================
   ALERTS / FLASH
   ============================================= */
.sp-alert {
    padding: 14px 18px;
    border-radius: var(--sp-radius-sm);
    font-size: 13.5px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.sp-alert-success { background: #dcfce7; color: #166534; border: 1px solid #bbf7d0; }
.sp-alert-danger { background: #fee2e2; color: #991b1b; border: 1px solid #fecaca; }
.sp-alert-warning { background: #fef3c7; color: #92400e; border: 1px solid #fde68a; }
.sp-alert-info { background: #dbeafe; color: #1e40af; border: 1px solid #bfdbfe; }

/* =============================================
   TPV SPECIFIC
   ============================================= */
.tpv-container {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 24px;
    height: calc(100vh - var(--sp-topbar-height) - 56px);
}

.tpv-items {
    overflow-y: auto;
}

.tpv-ticket {
    display: flex;
    flex-direction: column;
    background: var(--sp-white);
    border-radius: var(--sp-radius-lg);
    border: 1px solid var(--sp-gray-200);
    overflow: hidden;
}

.tpv-ticket-header {
    padding: 16px 20px;
    border-bottom: 1px solid var(--sp-gray-100);
    font-weight: 700;
}

.tpv-ticket-body {
    flex: 1;
    overflow-y: auto;
    padding: 0;
}

.tpv-ticket-line {
    display: flex;
    align-items: center;
    padding: 12px 20px;
    border-bottom: 1px solid var(--sp-gray-50);
    gap: 12px;
    transition: background .1s;
}

.tpv-ticket-line:hover {
    background: var(--sp-gray-50);
}

.tpv-ticket-line .line-name {
    flex: 1;
    font-size: 13px;
    font-weight: 500;
}

.tpv-ticket-line .line-type {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: .5px;
    font-weight: 700;
}

.tpv-ticket-line .line-type.service { color: var(--sp-info); }
.tpv-ticket-line .line-type.product { color: var(--sp-success); }

.tpv-ticket-line .line-qty {
    display: flex;
    align-items: center;
    gap: 4px;
}

.tpv-ticket-line .line-qty button {
    width: 24px;
    height: 24px;
    border-radius: 4px;
    border: 1px solid var(--sp-gray-300);
    background: var(--sp-white);
    cursor: pointer;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tpv-ticket-line .line-price {
    font-weight: 700;
    font-size: 13px;
    min-width: 60px;
    text-align: right;
}

.tpv-ticket-line .line-remove {
    cursor: pointer;
    color: var(--sp-gray-400);
    transition: color .15s;
}
.tpv-ticket-line .line-remove:hover { color: var(--sp-danger); }

.tpv-ticket-totals {
    border-top: 2px solid var(--sp-black);
    padding: 16px 20px;
}

.tpv-ticket-totals .total-row {
    display: flex;
    justify-content: space-between;
    padding: 4px 0;
    font-size: 13px;
    color: var(--sp-gray-600);
}

.tpv-ticket-totals .total-row.grand {
    font-size: 22px;
    font-weight: 800;
    color: var(--sp-black);
    padding: 8px 0;
    letter-spacing: -.5px;
}

.tpv-ticket-actions {
    padding: 16px 20px;
    display: flex;
    gap: 8px;
    border-top: 1px solid var(--sp-gray-100);
}

.tpv-category-tabs {
    display: flex;
    gap: 8px;
    margin-bottom: 16px;
    flex-wrap: wrap;
}

.tpv-category-tab {
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    border: 1.5px solid var(--sp-gray-300);
    background: var(--sp-white);
    cursor: pointer;
    transition: all .15s;
    color: var(--sp-gray-600);
}

.tpv-category-tab:hover,
.tpv-category-tab.active {
    background: var(--sp-black);
    color: var(--sp-white);
    border-color: var(--sp-black);
}

.tpv-item-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 10px;
}

.tpv-item-card {
    background: var(--sp-white);
    border: 1.5px solid var(--sp-gray-200);
    border-radius: var(--sp-radius);
    padding: 14px;
    cursor: pointer;
    transition: all .15s ease;
    text-align: center;
}

.tpv-item-card:hover {
    border-color: var(--sp-black);
    box-shadow: var(--sp-shadow-md);
    transform: translateY(-1px);
}

.tpv-item-card .item-name {
    font-size: 12.5px;
    font-weight: 600;
    margin-bottom: 4px;
    line-height: 1.3;
}

.tpv-item-card .item-price {
    font-size: 15px;
    font-weight: 800;
    color: var(--sp-black);
}

.tpv-item-card .item-stock {
    font-size: 10px;
    color: var(--sp-gray-500);
    margin-top: 2px;
}

/* =============================================
   TICKET PRINT (80mm thermal)
   ============================================= */
@media print {
    @page {
        size: 80mm auto;
        margin: 0;
    }

    body * { visibility: hidden; }
    .print-ticket, .print-ticket * { visibility: visible; }
    .print-ticket {
        position: absolute;
        left: 0;
        top: 0;
        width: 80mm;
        font-family: 'Courier New', monospace;
        font-size: 12px;
        color: #000;
        padding: 4mm;
    }
    .print-ticket .ticket-header { text-align: center; margin-bottom: 4mm; }
    .print-ticket .ticket-header h2 { font-size: 14px; margin: 0; }
    .print-ticket .ticket-separator { border-top: 1px dashed #000; margin: 3mm 0; }
    .print-ticket .ticket-line { display: flex; justify-content: space-between; padding: 1mm 0; }
    .print-ticket .ticket-total { font-weight: bold; font-size: 14px; }
    .print-ticket .ticket-footer { text-align: center; font-size: 10px; margin-top: 4mm; }
}

/* =============================================
   AUTH PAGES
   ============================================= */
.sp-auth-container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--sp-gray-50);
    padding: 20px;
}

.sp-auth-box {
    width: 100%;
    max-width: 440px;
}

.sp-auth-logo {
    text-align: center;
    margin-bottom: 32px;
}

.sp-auth-logo-icon {
    width: 56px;
    height: 56px;
    background: var(--sp-black);
    color: var(--sp-white);
    border-radius: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 12px;
}

.sp-auth-logo h2 {
    font-size: 22px;
    font-weight: 800;
    letter-spacing: -.5px;
    margin: 0;
}

.sp-auth-logo p {
    color: var(--sp-gray-500);
    font-size: 14px;
    margin: 4px 0 0;
}

.sp-auth-card {
    background: var(--sp-white);
    border-radius: var(--sp-radius-lg);
    border: 1px solid var(--sp-gray-200);
    padding: 36px;
    box-shadow: var(--sp-shadow);
}

.sp-auth-footer {
    text-align: center;
    margin-top: 20px;
    font-size: 13px;
    color: var(--sp-gray-500);
}

.sp-auth-footer a {
    color: var(--sp-black);
    font-weight: 600;
}

/* =============================================
   LANDING PAGE
   ============================================= */
.sp-landing-nav {
    padding: 20px 0;
    border-bottom: 1px solid var(--sp-gray-200);
}

.sp-landing-hero {
    padding: 80px 0;
    text-align: center;
}

.sp-landing-hero h1 {
    font-size: 52px;
    font-weight: 900;
    letter-spacing: -2px;
    line-height: 1.1;
    margin-bottom: 20px;
    color: var(--sp-black);
}

.sp-landing-hero p {
    font-size: 18px;
    color: var(--sp-gray-500);
    max-width: 540px;
    margin: 0 auto 32px;
    line-height: 1.6;
}

.sp-landing-features {
    padding: 80px 0;
    background: var(--sp-white);
}

.sp-landing-feature-card {
    padding: 32px;
    border-radius: var(--sp-radius-lg);
    border: 1px solid var(--sp-gray-200);
    height: 100%;
    transition: all .2s;
}

.sp-landing-feature-card:hover {
    box-shadow: var(--sp-shadow-lg);
    transform: translateY(-2px);
}

.sp-landing-feature-card i {
    font-size: 28px;
    margin-bottom: 16px;
    display: block;
}

.sp-landing-feature-card h3 {
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 8px;
}

.sp-landing-feature-card p {
    font-size: 14px;
    color: var(--sp-gray-500);
    line-height: 1.6;
    margin: 0;
}

.sp-landing-footer {
    padding: 40px 0;
    border-top: 1px solid var(--sp-gray-200);
    text-align: center;
    color: var(--sp-gray-500);
    font-size: 13px;
}

/* =============================================
   EMPTY STATES
   ============================================= */
.sp-empty {
    text-align: center;
    padding: 48px 24px;
}

.sp-empty i {
    font-size: 40px;
    color: var(--sp-gray-300);
    margin-bottom: 16px;
}

.sp-empty h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 4px;
}

.sp-empty p {
    color: var(--sp-gray-500);
    font-size: 13px;
}

/* =============================================
   MOBILE SIDEBAR TOGGLE
   ============================================= */
.sp-sidebar-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 22px;
    cursor: pointer;
    padding: 4px 8px;
    color: var(--sp-black);
    margin-right: 12px;
}

.sp-sidebar-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.5);
    z-index: 1035;
}

@media (max-width: 991px) {
    .sp-sidebar {
        transform: translateX(-100%);
    }
    .sp-sidebar.open {
        transform: translateX(0);
    }
    .sp-sidebar-overlay.open {
        display: block;
    }
    .sp-sidebar-toggle {
        display: block;
    }
    .sp-main {
        margin-left: 0;
    }
    .tpv-container {
        grid-template-columns: 1fr;
        height: auto;
    }
    .sp-landing-hero h1 {
        font-size: 32px;
    }
}

/* =============================================
   PAGINATION
   ============================================= */
.sp-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    margin-top: 24px;
}

.sp-pagination a,
.sp-pagination span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 36px;
    height: 36px;
    padding: 0 8px;
    border-radius: var(--sp-radius-sm);
    font-size: 13px;
    font-weight: 600;
    border: 1px solid var(--sp-gray-200);
    background: var(--sp-white);
    color: var(--sp-gray-600);
    transition: all .15s;
}

.sp-pagination a:hover {
    background: var(--sp-gray-50);
    border-color: var(--sp-gray-300);
    color: var(--sp-black);
}

.sp-pagination span.active {
    background: var(--sp-black);
    border-color: var(--sp-black);
    color: var(--sp-white);
}

/* =============================================
   MODAL
   ============================================= */
.sp-modal-content {
    border-radius: var(--sp-radius-lg);
    border: none;
    box-shadow: var(--sp-shadow-lg);
}

.sp-modal-content .modal-header {
    border-bottom: 1px solid var(--sp-gray-100);
    padding: 20px 24px;
}

.sp-modal-content .modal-body {
    padding: 24px;
}

.sp-modal-content .modal-footer {
    border-top: 1px solid var(--sp-gray-100);
    padding: 16px 24px;
}

/* =============================================
   UTILITY CLASSES
   ============================================= */
.sp-text-muted { color: var(--sp-gray-500); }
.sp-text-success { color: var(--sp-success); }
.sp-text-danger { color: var(--sp-danger); }
.sp-text-mono { font-family: var(--sp-font-mono); }
.sp-font-bold { font-weight: 700; }
.sp-font-black { font-weight: 900; }
.sp-border-bottom { border-bottom: 1px solid var(--sp-gray-100); }
.sp-gap-sm { gap: 8px; }
.sp-gap-md { gap: 16px; }
