/* MotoRent — unified design system */
:root {
    --primary: #ea580c;
    --primary-hover: #c2410c;
    --primary-soft: rgba(234, 88, 12, 0.12);
    --primary-ring: rgba(234, 88, 12, 0.25);

    --slate-50: #f8fafc;
    --slate-100: #f1f5f9;
    --slate-200: #e2e8f0;
    --slate-300: #cbd5e1;
    --slate-400: #94a3b8;
    --slate-500: #64748b;
    --slate-600: #475569;
    --slate-700: #334155;
    --slate-800: #1e293b;
    --slate-900: #0f172a;
    --slate-950: #020617;

    --success: #059669;
    --success-soft: rgba(5, 150, 105, 0.12);
    --info: #0284c7;
    --info-soft: rgba(2, 132, 199, 0.12);
    --warning: #d97706;
    --warning-soft: rgba(217, 119, 6, 0.12);
    --danger: #dc2626;

    --surface: #ffffff;
    --surface-elevated: #ffffff;
    --bg-app: var(--slate-100);
    --bg-auth: linear-gradient(145deg, var(--slate-950) 0%, var(--slate-800) 45%, #7c2d12 100%);

    --sidebar-width: 268px;
    --topbar-height: 64px;
    --radius-sm: 8px;
    --radius: 12px;
    --radius-lg: 16px;
    --shadow-sm: 0 1px 2px rgba(15, 23, 42, 0.05);
    --shadow: 0 4px 6px -1px rgba(15, 23, 42, 0.07), 0 2px 4px -2px rgba(15, 23, 42, 0.05);
    --shadow-md: 0 10px 15px -3px rgba(15, 23, 42, 0.08), 0 4px 6px -4px rgba(15, 23, 42, 0.05);
    --shadow-lg: 0 20px 25px -5px rgba(15, 23, 42, 0.08), 0 8px 10px -6px rgba(15, 23, 42, 0.04);

    --font: 'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;
    --transition: 0.2s ease;

    /* Bootstrap 5 theme sync */
    --bs-primary: #ea580c;
    --bs-primary-rgb: 234, 88, 12;
    --bs-body-font-family: var(--font);
    --bs-body-color: var(--slate-800);
    --bs-body-bg: var(--bg-app);
    --bs-border-color: var(--slate-200);
    --bs-link-color: var(--primary);
    --bs-link-hover-color: var(--primary-hover);
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font);
    background: var(--bg-app);
    color: var(--slate-800);
    margin: 0;
    min-height: 100vh;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    color: var(--slate-900);
    letter-spacing: -0.02em;
}

a {
    color: var(--primary);
    text-decoration: none;
    transition: color var(--transition);
}

a:hover {
    color: var(--primary-hover);
}

/* Bootstrap overrides */
.btn {
    font-weight: 500;
    border-radius: var(--radius-sm);
    padding: 0.5rem 1rem;
    transition: all var(--transition);
}

.btn-primary {
    background: var(--primary);
    border-color: var(--primary);
    box-shadow: var(--shadow-sm);
}

.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active {
    background: var(--primary-hover) !important;
    border-color: var(--primary-hover) !important;
    box-shadow: var(--shadow);
}

.btn-outline-primary {
    color: var(--primary);
    border-color: var(--slate-300);
}

.btn-outline-primary:hover {
    background: var(--primary-soft);
    border-color: var(--primary);
    color: var(--primary-hover);
}

.btn-outline-secondary {
    border-color: var(--slate-300);
    color: var(--slate-600);
}

.btn-outline-secondary:hover:not(.disabled) {
    background: var(--slate-100);
    border-color: var(--slate-400);
    color: var(--slate-800);
}

.btn-link {
    color: var(--slate-600);
    text-decoration: none;
}

.btn-link:hover {
    color: var(--primary);
}

.form-control,
.form-select {
    border: 1px solid var(--slate-300);
    border-radius: var(--radius-sm);
    padding: 0.55rem 0.85rem;
    font-size: 0.9375rem;
    transition: border-color var(--transition), box-shadow var(--transition);
}

.form-control:focus,
.form-select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px var(--primary-ring);
}

.form-label {
    font-weight: 500;
    font-size: 0.875rem;
    color: var(--slate-700);
    margin-bottom: 0.35rem;
}

.table {
    --bs-table-bg: transparent;
    margin-bottom: 0;
}

.table th {
    background: var(--slate-50);
    color: var(--slate-600);
    font-weight: 600;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    border-bottom: 1px solid var(--slate-200);
    padding: 0.85rem 1rem;
    white-space: nowrap;
}

.table td {
    padding: 0.9rem 1rem;
    vertical-align: middle;
    border-color: var(--slate-100);
    color: var(--slate-700);
}

.table-hover tbody tr:hover {
    background: var(--slate-50);
}

.badge {
    font-weight: 500;
    padding: 0.35em 0.65em;
    border-radius: 6px;
}

.alert {
    border-radius: var(--radius-sm);
    border: none;
    font-size: 0.9375rem;
}

.alert-danger {
    background: #fef2f2;
    color: #991b1b;
}

.alert-success {
    background: #ecfdf5;
    color: #065f46;
}

/* Public navbar */
.public-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1050;
    padding: 0.85rem 0;
    background: rgba(15, 23, 42, 0.72);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.public-nav .navbar-brand {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 700;
    font-size: 1.2rem;
    color: #fff !important;
}

.public-nav .navbar-brand i {
    color: var(--primary);
    font-size: 1.5rem;
}

.public-nav .nav-link {
    color: rgba(255, 255, 255, 0.85) !important;
    font-weight: 500;
    font-size: 0.9375rem;
    padding: 0.4rem 0.85rem !important;
    border-radius: var(--radius-sm);
}

.public-nav .nav-link:hover {
    color: #fff !important;
    background: rgba(255, 255, 255, 0.08);
}

.public-nav .btn-nav-primary {
    background: var(--primary);
    color: #fff !important;
    border-radius: var(--radius-sm);
    padding: 0.45rem 1rem !important;
}

.public-nav .btn-nav-primary:hover {
    background: var(--primary-hover);
    color: #fff !important;
}

/* Auth pages */
.auth-page {
    background: var(--bg-auth);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.auth-page .public-nav {
    position: relative;
    background: transparent;
    border: none;
    backdrop-filter: none;
}

.auth-footer {
    background: transparent;
    color: rgba(255, 255, 255, 0.55);
    text-align: center;
    padding: 1.25rem;
    font-size: 0.875rem;
    border: none;
}

.auth-container {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem 1rem 3rem;
}

.auth-card {
    background: var(--surface);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    padding: 2.5rem;
    width: 100%;
    max-width: 440px;
    border: 1px solid var(--slate-200);
}

.auth-card.auth-card-wide {
    max-width: 520px;
}

.auth-card .brand {
    text-align: center;
    margin-bottom: 1.75rem;
}

.auth-card .brand-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 1rem;
    background: var(--primary-soft);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
}

.auth-card .brand-icon i {
    font-size: 1.75rem;
    color: var(--primary);
}

.auth-card .brand h2 {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 0 0.25rem;
}

.auth-card .brand p {
    margin: 0;
    color: var(--slate-500);
    font-size: 0.9375rem;
}

.auth-card .form-control-lg-touch {
    min-height: 2.75rem;
}

/* Landing */
.landing-page {
    background: var(--slate-950);
}

.hero-section {
    min-height: 100vh;
    padding-top: 5rem;
    background:
        radial-gradient(ellipse 80% 50% at 50% -20%, rgba(234, 88, 12, 0.25), transparent),
        linear-gradient(180deg, var(--slate-950) 0%, var(--slate-900) 100%);
    color: #fff;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}

.hero-section .container {
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 999px;
    padding: 0.35rem 1rem;
    font-size: 0.8125rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.25rem;
}

.hero-section h1 {
    font-size: clamp(2.25rem, 5vw, 3.75rem);
    font-weight: 800;
    color: #fff;
    line-height: 1.1;
    margin-bottom: 1.25rem;
}

.hero-section .highlight {
    color: var(--primary);
    background: linear-gradient(135deg, #fb923c, #ea580c);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-section .lead {
    font-size: 1.125rem;
    color: var(--slate-400);
    max-width: 32rem;
    line-height: 1.7;
}

.hero-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-stat strong {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
}

.hero-stat span {
    font-size: 0.875rem;
    color: var(--slate-400);
}

.section-light {
    background: var(--slate-50);
    padding: 5rem 0;
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.section-title p {
    color: var(--slate-500);
    margin: 0;
    font-size: 1.0625rem;
}

.feature-card {
    background: var(--surface);
    border-radius: var(--radius-lg);
    padding: 2rem;
    height: 100%;
    border: 1px solid var(--slate-200);
    box-shadow: var(--shadow);
    transition: transform var(--transition), box-shadow var(--transition);
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.feature-card .feature-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius);
    background: var(--primary-soft);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
}

.feature-card .feature-icon i {
    font-size: 1.35rem;
    color: var(--primary);
}

.feature-card h5 {
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.feature-card p {
    color: var(--slate-500);
    margin: 0;
    font-size: 0.9375rem;
    line-height: 1.6;
}

.cta-section {
    background: var(--slate-900);
    color: #fff;
    padding: 4rem 0;
    text-align: center;
}

.cta-section h3 {
    color: #fff;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.cta-section p {
    color: var(--slate-400);
    margin-bottom: 1.5rem;
}

/* App layout */
.app-page {
    background: var(--bg-app);
}

.app-wrapper {
    display: flex;
    min-height: 100vh;
}

.sidebar-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.5);
    z-index: 999;
    opacity: 0;
    transition: opacity var(--transition);
}

.sidebar-overlay.show {
    display: block;
    opacity: 1;
}

.sidebar {
    width: var(--sidebar-width);
    background: var(--slate-900);
    color: #fff;
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    border-right: 1px solid rgba(255, 255, 255, 0.06);
    transition: transform 0.3s ease;
}

.sidebar-brand {
    padding: 1.25rem 1.5rem;
    font-size: 1.15rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.65rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    color: #fff;
}

.sidebar-brand i {
    color: var(--primary);
    font-size: 1.5rem;
}

.sidebar-nav {
    flex: 1;
    padding: 0.75rem 0.65rem;
    overflow-y: auto;
}

.sidebar-nav a {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.7rem 1rem;
    margin-bottom: 2px;
    color: var(--slate-400);
    text-decoration: none;
    font-size: 0.9375rem;
    font-weight: 500;
    border-radius: var(--radius-sm);
    border-left: 3px solid transparent;
    transition: all var(--transition);
}

.sidebar-nav a i {
    font-size: 1.1rem;
    width: 1.25rem;
    text-align: center;
}

.sidebar-nav a:hover {
    background: rgba(255, 255, 255, 0.06);
    color: #fff;
}

.sidebar-nav a.active {
    background: var(--primary-soft);
    color: #fdba74;
    border-left-color: var(--primary);
}

.sidebar-nav a.text-danger {
    color: #f87171 !important;
}

.sidebar-nav a.text-danger:hover {
    background: rgba(248, 113, 113, 0.12);
    color: #fca5a5 !important;
}

.sidebar-nav hr {
    border-color: rgba(255, 255, 255, 0.08);
    margin: 0.5rem 0.75rem;
}

.sidebar-user {
    padding: 1rem 1.25rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(0, 0, 0, 0.15);
}

.sidebar-user strong {
    font-size: 0.875rem;
    display: block;
    color: #fff;
}

.sidebar-user small {
    color: var(--slate-500);
    font-size: 0.75rem;
}

.user-avatar {
    width: 40px;
    height: 40px;
    min-width: 40px;
    background: linear-gradient(135deg, var(--primary), var(--primary-hover));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9375rem;
    color: #fff;
}

.main-content {
    margin-left: var(--sidebar-width);
    flex: 1;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    width: calc(100% - var(--sidebar-width));
}

.topbar {
    background: var(--surface);
    min-height: var(--topbar-height);
    padding: 0 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    border-bottom: 1px solid var(--slate-200);
    position: sticky;
    top: 0;
    z-index: 100;
}

.sidebar-toggle {
    font-size: 1.35rem;
    padding: 0.25rem 0.5rem;
    color: var(--slate-600);
}

.page-title {
    font-size: 1.125rem;
    font-weight: 600;
    margin: 0;
    flex: 1;
    color: var(--slate-900);
}

.topbar-actions {
    font-size: 0.875rem;
    color: var(--slate-500);
}

.content-area {
    padding: 1.5rem;
    flex: 1;
}

.site-footer {
    background: var(--surface);
    text-align: center;
    padding: 1rem 1.5rem;
    color: var(--slate-500);
    font-size: 0.8125rem;
    border-top: 1px solid var(--slate-200);
}

.site-footer p {
    margin: 0;
}

/* Dashboard & panels */
.stat-card {
    background: var(--surface);
    border-radius: var(--radius-lg);
    padding: 1.35rem 1.5rem;
    border: 1px solid var(--slate-200);
    box-shadow: var(--shadow-sm);
    display: flex;
    align-items: center;
    gap: 1rem;
    height: 100%;
    transition: box-shadow var(--transition);
}

.stat-card:hover {
    box-shadow: var(--shadow);
}

.stat-card .icon {
    width: 52px;
    height: 52px;
    min-width: 52px;
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
}

.stat-card .icon.orange { background: var(--primary-soft); color: var(--primary); }
.stat-card .icon.dark { background: var(--slate-100); color: var(--slate-700); }
.stat-card .icon.green { background: var(--success-soft); color: var(--success); }
.stat-card .icon.blue { background: var(--info-soft); color: var(--info); }

.stat-card h3 {
    font-size: 1.625rem;
    font-weight: 700;
    margin: 0;
    color: var(--slate-900);
    line-height: 1.2;
}

.stat-card p {
    margin: 0.15rem 0 0;
    color: var(--slate-500);
    font-size: 0.8125rem;
    font-weight: 500;
}

.card-panel {
    background: var(--surface);
    border-radius: var(--radius-lg);
    border: 1px solid var(--slate-200);
    box-shadow: var(--shadow-sm);
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

.card-panel h5 {
    font-weight: 600;
    color: var(--slate-900);
}

.card-header-custom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 1.25rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--slate-100);
}

.card-header-custom h5 {
    margin: 0;
}

/* Motorcycle cards */
.motorcycle-card {
    background: var(--surface);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--slate-200);
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition), box-shadow var(--transition);
    height: 100%;
}

.motorcycle-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.motorcycle-card .card-img {
    height: 200px;
    background: var(--slate-100);
    overflow: hidden;
}

.motorcycle-card .card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.motorcycle-card .card-body {
    padding: 1.25rem;
}

.motorcycle-card h5,
.motorcycle-card h6 {
    font-weight: 600;
    margin-bottom: 0.35rem;
}

.motorcycle-card .price {
    color: var(--primary);
    font-size: 1.125rem;
    font-weight: 700;
}

.category-badge {
    background: var(--slate-800);
    color: #fff;
    font-size: 0.6875rem;
    font-weight: 600;
    padding: 0.3rem 0.55rem;
    border-radius: 6px;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

/* Filters */
.search-filter-bar {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
    padding: 1rem 1.25rem;
    background: var(--surface);
    border: 1px solid var(--slate-200);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

.filter-input {
    max-width: 250px;
    min-width: 160px;
}

.filter-select {
    max-width: 200px;
    min-width: 140px;
}

.filter-select-sm {
    max-width: 180px;
}

/* Info blocks */
.booking-calendar-info {
    background: var(--primary-soft);
    border: 1px solid rgba(234, 88, 12, 0.2);
    border-left: 4px solid var(--primary);
    padding: 1rem 1.15rem;
    border-radius: var(--radius-sm);
    margin-bottom: 1.25rem;
    font-size: 0.9375rem;
    color: var(--slate-700);
}

.booking-calendar-info i {
    color: var(--primary);
    margin-right: 0.35rem;
}

.profile-summary {
    background: var(--slate-50);
    border: 1px solid var(--slate-200);
    border-radius: var(--radius-sm);
    padding: 1rem 1.15rem;
    margin-bottom: 1.25rem;
    font-size: 0.9375rem;
}

.empty-state {
    text-align: center;
    padding: 3rem 1.5rem;
    color: var(--slate-500);
}

.chart-container {
    position: relative;
    height: 300px;
}

/* Receipt & print */
.receipt-container {
    max-width: 800px;
    margin: 0 auto;
    background: var(--surface);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid var(--slate-200);
    box-shadow: var(--shadow);
}

.receipt-header {
    text-align: center;
    border-bottom: 2px solid var(--primary);
    padding-bottom: 1rem;
    margin-bottom: 1.5rem;
}

.receipt-header h2 {
    color: var(--primary);
    margin: 0;
    font-weight: 700;
}

/* Pagination */
.pagination-compact {
    margin-top: 1.5rem;
}

.pagination-compact-inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 0.75rem 1rem;
    padding: 1rem;
    background: var(--surface);
    border: 1px solid var(--slate-200);
    border-radius: var(--radius-lg);
}

.pagination-nav-group {
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem;
}

.pagination-status {
    font-size: 0.875rem;
    color: var(--slate-600);
    text-align: center;
    min-width: 8rem;
    font-weight: 500;
}

.pagination-compact .btn.disabled {
    pointer-events: none;
    opacity: 0.45;
}

/* Report export (standalone page) */
.report-export body,
body.report-export {
    font-family: var(--font);
    padding: 2.5rem;
    color: var(--slate-800);
    background: #fff;
}

.report-export h1 {
    color: var(--primary);
    border-bottom: 2px solid var(--primary);
    padding-bottom: 0.75rem;
    font-size: 1.5rem;
}

.report-export .meta {
    color: var(--slate-500);
    margin-bottom: 1.5rem;
    font-size: 0.9375rem;
}

.report-export table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 1.25rem;
    font-size: 0.9rem;
}

.report-export th,
.report-export td {
    border: 1px solid var(--slate-200);
    padding: 0.65rem 0.85rem;
    text-align: left;
}

.report-export th {
    background: var(--slate-900);
    color: #fff;
    font-weight: 600;
}

.report-export .report-actions {
    margin-top: 2rem;
}

@media print {
    .sidebar,
    .topbar,
    .site-footer,
    .no-print,
    .sidebar-overlay {
        display: none !important;
    }
    .main-content {
        margin-left: 0 !important;
        width: 100% !important;
    }
    .content-area {
        padding: 0 !important;
    }
    body {
        background: #fff;
    }
}

@media (max-width: 991.98px) {
    .sidebar {
        transform: translateX(-100%);
    }
    .sidebar.show {
        transform: translateX(0);
        box-shadow: var(--shadow-lg);
    }
    .main-content {
        margin-left: 0;
        width: 100%;
    }
}

/* Shared UI patterns */
.text-primary {
    color: var(--primary) !important;
}

.btn-secondary {
    background: var(--slate-100);
    border-color: var(--slate-300);
    color: var(--slate-700);
}

.btn-secondary:hover {
    background: var(--slate-200);
    border-color: var(--slate-400);
    color: var(--slate-900);
}

.form-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1.5rem;
    padding-top: 1.25rem;
    border-top: 1px solid var(--slate-100);
}

.user-avatar-lg {
    width: 80px;
    height: 80px;
    min-width: 80px;
    font-size: 2rem;
    border-radius: var(--radius-lg);
}

.profile-card .user-avatar-lg {
    margin-left: auto;
    margin-right: auto;
}

.detail-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 1rem 1.5rem;
}

/* Legacy col layout inside detail-grid (booking view, etc.) */
.detail-grid > [class*="col-"] {
    padding: 0.85rem 1rem;
    background: var(--slate-50);
    border: 1px solid var(--slate-100);
    border-radius: var(--radius-sm);
}

.detail-grid > [class*="col-"] strong {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--slate-500);
    margin-bottom: 0.25rem;
}

.detail-item {
    padding: 0.85rem 1rem;
    background: var(--slate-50);
    border: 1px solid var(--slate-100);
    border-radius: var(--radius-sm);
}

.detail-item .label {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--slate-500);
    margin-bottom: 0.25rem;
}

.detail-item .value {
    font-weight: 500;
    color: var(--slate-800);
}

.action-panel .btn {
    justify-content: center;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

.auth-card .auth-footer-text {
    text-align: center;
    margin: 0;
    font-size: 0.9375rem;
    color: var(--slate-600);
}

.auth-card .auth-footer-text a {
    font-weight: 600;
}

.auth-card .demo-hint {
    font-size: 0.8125rem;
    color: var(--slate-500);
}

.auth-page .auth-card hr {
    border-color: var(--slate-200);
    margin: 1.25rem 0;
}

@media (max-width: 575.98px) {
    .pagination-btn-label {
        display: none;
    }
    .content-area {
        padding: 1rem;
    }
    .filter-input,
    .filter-select,
    .filter-select-sm {
        max-width: 100%;
        min-width: 100%;
    }
}
