:root {
    --primary: #2563eb;
    --primary-hover: #1d4ed8;
    --primary-soft: #eff6ff;
    --primary-ring: rgba(37, 99, 235, 0.12);
    --text: #0f172a;
    --text-secondary: #475569;
    --text-muted: #94a3b8;
    --bg: #f1f5f9;
    --surface: #ffffff;
    --border: #e2e8f0;
    --border-light: #f1f5f9;
    --success: #16a34a;
    --success-soft: #f0fdf4;
    --danger: #dc2626;
    --danger-soft: #fef2f2;
    --warning: #d97706;
    --violet: #7c3aed;
    --violet-soft: #f5f3ff;
    --amber: #d97706;
    --amber-soft: #fffbeb;
    --green: #059669;
    --green-soft: #ecfdf5;
    --sidebar-width: 252px;
    --topbar-height: 64px;
    --radius: 10px;
    --radius-lg: 14px;
    --radius-xl: 18px;
    --transition: 0.18s ease;
    --shadow-xs: 0 1px 2px rgba(15, 23, 42, 0.04);
    --shadow-sm: 0 1px 3px rgba(15, 23, 42, 0.06), 0 1px 2px rgba(15, 23, 42, 0.04);
    --shadow-md: 0 8px 24px rgba(15, 23, 42, 0.08);
    --shadow-lg: 0 18px 40px rgba(15, 23, 42, 0.12);
}

* { box-sizing: border-box; }

body {
    font-family: 'Vazirmatn', system-ui, sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.65;
    font-size: 0.9375rem;
    min-height: 100vh;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.app-body {
    background:
        radial-gradient(circle at top left, rgba(37, 99, 235, 0.05), transparent 28%),
        var(--bg);
}

/* ─── Auth ─── */
.auth-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg);
    padding: 1.5rem;
}

.auth-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    width: 100%;
    max-width: 420px;
    box-shadow: var(--shadow-lg);
}

.auth-card-header {
    padding: 2.25rem 2rem 0;
    text-align: center;
}

.auth-card-header .logo-mark {
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, var(--primary), #3b82f6);
    color: #fff;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.125rem;
    margin-bottom: 1.125rem;
    box-shadow: 0 10px 24px rgba(37, 99, 235, 0.28);
}

.auth-card-header h4 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text);
    margin: 0;
}

.auth-card-header p {
    font-size: 0.875rem;
    color: var(--text-muted);
    margin: 0.375rem 0 0;
}

.auth-card-body {
    padding: 1.5rem 2rem 2rem;
}

/* ─── Public / Landing ─── */
.public-nav {
    background: var(--surface);
    border-bottom: 1px solid var(--border);
    padding: 0.875rem 0;
}

.public-nav .navbar-brand {
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--text);
}

.public-nav .navbar-brand:hover { color: var(--text); }

.landing-hero {
    text-align: center;
    padding: 4rem 0 3rem;
    max-width: 560px;
    margin: 0 auto;
}

.landing-hero h1 {
    font-size: 1.75rem;
    font-weight: 600;
    letter-spacing: -0.02em;
    margin-bottom: 0.75rem;
    color: var(--text);
}

.landing-hero .lead {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.feature-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    height: 100%;
}

.feature-card .icon-wrap {
    width: 36px;
    height: 36px;
    background: var(--border-light);
    color: var(--text-secondary);
    border-radius: var(--radius);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

.feature-card h5 {
    font-size: 0.9375rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.feature-card p {
    font-size: 0.875rem;
    color: var(--text-muted);
    margin: 0;
    line-height: 1.6;
}

/* ─── App Layout ─── */
.app-wrapper {
    display: flex;
    min-height: 100vh;
}

.sidebar {
    width: var(--sidebar-width);
    background: var(--surface);
    border-left: 1px solid var(--border);
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 1040;
    display: flex;
    flex-direction: column;
    transition: transform var(--transition);
    box-shadow: -4px 0 24px rgba(15, 23, 42, 0.04);
}

.sidebar-brand {
    min-height: var(--topbar-height);
    padding: 0.875rem 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    color: var(--text);
    border-bottom: 1px solid var(--border);
}

.sidebar-brand:hover { color: var(--text); }

.sidebar-brand .brand-logo {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--primary), #3b82f6);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9375rem;
    box-shadow: 0 8px 18px rgba(37, 99, 235, 0.22);
    flex-shrink: 0;
}

.sidebar-brand .brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.sidebar-brand .brand-text strong {
    font-size: 0.9375rem;
    font-weight: 700;
}

.sidebar-brand .brand-text small {
    font-size: 0.6875rem;
    color: var(--text-muted);
    margin-top: 0.125rem;
}

.sidebar-nav-label {
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--text-muted);
    padding: 0.25rem 0.75rem 0.5rem;
}

.sidebar-nav {
    padding: 0.875rem 0.75rem;
    flex: 1;
    overflow-y: auto;
}

.sidebar-nav .nav-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.625rem 0.875rem;
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.875rem;
    border-radius: var(--radius);
    margin-bottom: 0.2rem;
    transition: background var(--transition), color var(--transition), transform var(--transition);
}

.sidebar-nav .nav-link:hover {
    background: var(--border-light);
    color: var(--text);
}

.sidebar-nav .nav-link.active {
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.12), rgba(59, 130, 246, 0.08));
    color: var(--primary);
    font-weight: 600;
    box-shadow: inset 0 0 0 1px rgba(37, 99, 235, 0.08);
}

.sidebar-nav .nav-link i {
    width: 18px;
    text-align: center;
    font-size: 0.875rem;
    opacity: 0.75;
}

.sidebar-nav .nav-link.active i { opacity: 1; }

.sidebar-footer {
    padding: 0.75rem 1.25rem;
    border-top: 1px solid var(--border);
    font-size: 0.75rem;
    color: var(--text-muted);
}

.main-content {
    margin-right: var(--sidebar-width);
    flex: 1;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.topbar {
    height: var(--topbar-height);
    background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 1.5rem;
    position: sticky;
    top: 0;
    z-index: 1030;
}

.topbar-start {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.topbar-heading {
    display: flex;
    flex-direction: column;
}

.topbar-title {
    font-size: 0.9375rem;
    font-weight: 700;
    color: var(--text);
    line-height: 1.2;
}

.topbar-subtitle {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-top: 0.125rem;
}

.topbar-toggle {
    display: none;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    width: 38px;
    height: 38px;
    color: var(--text-secondary);
    cursor: pointer;
    font-size: 0.875rem;
    box-shadow: var(--shadow-xs);
}

.topbar-user-trigger {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    cursor: pointer;
    padding: 0.35rem 0.5rem 0.35rem 0.75rem;
    border-radius: 999px;
    border: 1px solid var(--border);
    background: var(--surface);
    transition: background var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.topbar-user-trigger:hover {
    background: var(--border-light);
    border-color: #cbd5e1;
    box-shadow: var(--shadow-xs);
}

.topbar-user-meta {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
    text-align: right;
}

.topbar-user-name {
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--text);
}

.topbar-user-role {
    font-size: 0.6875rem;
    color: var(--text-muted);
}

.topbar-user-chevron {
    font-size: 0.625rem;
    color: var(--text-muted);
    margin-left: 0.25rem;
}

.topbar-user .avatar {
    width: 34px;
    height: 34px;
    background: linear-gradient(135deg, var(--primary-soft), #dbeafe);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.8125rem;
}

.page-content {
    padding: 1.75rem 1.5rem 2rem;
    flex: 1;
    max-width: 1280px;
    width: 100%;
}

/* ─── Page Header ─── */
.page-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.page-header h1 {
    font-size: 1.375rem;
    font-weight: 700;
    margin: 0;
    letter-spacing: -0.02em;
}

.page-header .breadcrumb-text {
    font-size: 0.8125rem;
    color: var(--text-muted);
    margin-top: 0.25rem;
}

/* ─── Cards ─── */
.card {
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    background: var(--surface);
    box-shadow: var(--shadow-sm);
}

.card-header {
    background: transparent;
    border-bottom: 1px solid var(--border);
    padding: 1rem 1.25rem;
    font-weight: 600;
    font-size: 0.875rem;
    color: var(--text);
}

.card-body { padding: 1.25rem; }

/* ─── Stat Cards ─── */
.stat-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 1.125rem 1.25rem;
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition), box-shadow var(--transition);
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    height: 3px;
    background: var(--stat-accent, var(--primary));
}

.stat-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.stat-card-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}

.stat-card .stat-label {
    font-size: 0.8125rem;
    color: var(--text-muted);
    font-weight: 500;
}

.stat-card .stat-value {
    font-size: 1.875rem;
    font-weight: 700;
    color: var(--text);
    line-height: 1;
    letter-spacing: -0.03em;
}

.stat-icon-wrap {
    width: 38px;
    height: 38px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9375rem;
    background: var(--stat-icon-bg, var(--primary-soft));
    color: var(--stat-accent, var(--primary));
}

.stat-card-blue { --stat-accent: #2563eb; --stat-icon-bg: #eff6ff; }
.stat-card-violet { --stat-accent: #7c3aed; --stat-icon-bg: #f5f3ff; }
.stat-card-amber { --stat-accent: #d97706; --stat-icon-bg: #fffbeb; }
.stat-card-green { --stat-accent: #059669; --stat-icon-bg: #ecfdf5; }

.stat-card .stat-icon {
    display: none;
}

/* ─── Dashboard Charts ─── */
.dashboard-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1rem;
}

.dashboard-period-group {
    display: inline-flex;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 0.2rem;
    gap: 0.15rem;
}

.dashboard-period-group .btn {
    border: none;
    box-shadow: none;
    padding: 0.35rem 0.85rem;
    font-size: 0.8125rem;
    color: var(--text-muted);
}

.dashboard-period-group .btn.active {
    background: var(--surface);
    color: var(--primary);
    font-weight: 500;
    box-shadow: 0 1px 2px rgba(15, 23, 42, 0.06);
}

.chart-card .card-header {
    background: var(--surface);
    border-bottom: 1px solid var(--border);
    font-weight: 500;
    font-size: 0.9375rem;
}

.chart-card .card-body {
    padding: 1rem 1.25rem 1.25rem;
}

.chart-wrap {
    position: relative;
    height: 280px;
}

.chart-wrap.chart-wrap-sm {
    height: 240px;
}

.period-stat {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 1rem 1.25rem;
    box-shadow: var(--shadow-xs);
}

.period-stat .label {
    font-size: 0.8125rem;
    color: var(--text-muted);
    margin-bottom: 0.25rem;
}

.period-stat .value {
    font-size: 1.5rem;
    font-weight: 600;
    line-height: 1.2;
}

.period-stat .hint {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-top: 0.35rem;
}

.nav-tabs {
    border-bottom: 1px solid var(--border);
}

.nav-tabs .nav-link {
    color: var(--text-muted);
    border: none;
    border-bottom: 2px solid transparent;
    padding: 0.625rem 1rem;
    font-size: 0.9375rem;
}

.nav-tabs .nav-link:hover {
    color: var(--text);
    border-color: transparent;
}

.nav-tabs .nav-link.active {
    color: var(--primary);
    background: transparent;
    border-color: transparent transparent var(--primary);
    font-weight: 500;
}

.forecast-daily-table thead th {
    white-space: nowrap;
}

/* ─── Tables ─── */
.table-responsive {
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--surface);
}

.card .table-responsive,
.card-body.p-0 .table-responsive {
    border: none;
    border-radius: 0;
    border-top: 1px solid var(--border);
}

.table { margin-bottom: 0; }

.table thead th {
    background: #f8fafc;
    border-bottom: 1px solid var(--border);
    font-weight: 600;
    font-size: 0.75rem;
    color: var(--text-muted);
    padding: 0.75rem 1rem;
    white-space: nowrap;
    letter-spacing: 0.01em;
}

.table tbody td {
    padding: 0.875rem 1rem;
    vertical-align: middle;
    border-color: var(--border);
    font-size: 0.875rem;
    color: var(--text);
}

.table-hover tbody tr {
    transition: background var(--transition);
}

.table-hover tbody tr:hover {
    background: #f8fafc;
}

.table-striped > tbody > tr:nth-of-type(odd) > * {
    background: transparent;
}

/* ─── Buttons ─── */
.btn {
    border-radius: var(--radius);
    font-weight: 500;
    font-size: 0.875rem;
    padding: 0.4375rem 0.875rem;
    transition: background var(--transition), border-color var(--transition), color var(--transition);
}

.btn-primary {
    background: linear-gradient(180deg, #3b82f6, var(--primary));
    border-color: var(--primary);
    color: #fff;
    box-shadow: 0 1px 2px rgba(37, 99, 235, 0.2);
}

.btn-primary:hover,
.btn-primary:focus {
    background: linear-gradient(180deg, var(--primary), var(--primary-hover));
    border-color: var(--primary-hover);
    color: #fff;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.24);
}

.btn-outline-primary {
    border-color: var(--border);
    color: var(--text-secondary);
    background: var(--surface);
}

.btn-outline-primary:hover {
    background: var(--bg);
    border-color: var(--border);
    color: var(--text);
}

.btn-outline-secondary {
    border-color: var(--border);
    color: var(--text-secondary);
    background: transparent;
}

.btn-outline-secondary:hover {
    background: var(--bg);
    border-color: var(--border);
    color: var(--text);
}

.btn-secondary {
    background: var(--bg);
    border-color: var(--border);
    color: var(--text-secondary);
}

.btn-secondary:hover {
    background: var(--border-light);
    border-color: var(--border);
    color: var(--text);
}

.btn-danger {
    background: var(--danger);
    border-color: var(--danger);
}

.btn-sm {
    padding: 0.25rem 0.625rem;
    font-size: 0.8125rem;
}

.btn-lg {
    padding: 0.625rem 1.25rem;
    font-size: 0.9375rem;
}

.btn-group .btn:first-child { border-radius: 0 var(--radius) var(--radius) 0; }
.btn-group .btn:last-child  { border-radius: var(--radius) 0 0 var(--radius); }

/* ─── Forms ─── */
.form-control,
.form-select {
    border-radius: var(--radius);
    border: 1px solid var(--border);
    padding: 0.5rem 0.75rem;
    font-size: 0.875rem;
    background: var(--surface);
    color: var(--text);
    transition: border-color var(--transition), box-shadow var(--transition);
}

.form-control::placeholder { color: var(--text-muted); }

.form-control:focus,
.form-select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 4px var(--primary-ring);
}

.form-label {
    font-weight: 600;
    font-size: 0.8125rem;
    color: var(--text-secondary);
    margin-bottom: 0.375rem;
}

.input-group-text {
    background: var(--bg);
    border-color: var(--border);
    color: var(--text-muted);
    font-size: 0.8125rem;
}

/* ─── Alerts ─── */
.alert {
    border-radius: var(--radius);
    font-size: 0.875rem;
    border: 1px solid transparent;
    padding: 0.75rem 1rem;
}

.alert-danger {
    background: var(--danger-soft);
    color: var(--danger);
    border-color: #fecaca;
}

.alert-success {
    background: var(--success-soft);
    color: var(--success);
    border-color: #bbf7d0;
}

.alert-info {
    background: var(--primary-soft);
    color: var(--primary);
    border-color: #bfdbfe;
}

/* ─── Badges ─── */
.badge {
    font-weight: 600;
    padding: 0.3em 0.65em;
    border-radius: 999px;
    font-size: 0.6875rem;
}

.badge.bg-success { background: var(--success-soft) !important; color: var(--success) !important; }
.badge.bg-danger  { background: var(--danger-soft) !important; color: var(--danger) !important; }
.badge.bg-warning { background: var(--amber-soft) !important; color: var(--warning) !important; }
.badge.bg-info    { background: var(--primary-soft) !important; color: var(--primary) !important; }

/* ─── Dropdown ─── */
.dropdown-menu {
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    padding: 0.5rem;
    font-size: 0.875rem;
}

.dropdown-item {
    border-radius: 4px;
    padding: 0.4375rem 0.75rem;
    color: var(--text-secondary);
}

.dropdown-item:hover {
    background: var(--bg);
    color: var(--text);
}

/* ─── Empty State ─── */
.empty-state {
    text-align: center;
    color: var(--text-muted);
    padding: 2.75rem 1rem;
    font-size: 0.9375rem;
    background: linear-gradient(180deg, #f8fafc, #f1f5f9);
    border: 1px dashed #cbd5e1;
    border-radius: var(--radius-lg);
}

.empty-state i {
    display: block;
    font-size: 1.875rem;
    margin-bottom: 0.75rem;
    opacity: 0.4;
    color: var(--primary);
}

/* ─── Mobile ─── */
.sidebar-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.2);
    z-index: 1035;
}

@media (max-width: 991.98px) {
    .sidebar { transform: translateX(100%); }
    .sidebar.show { transform: translateX(0); }
    .sidebar-overlay.show { display: block; }
    .main-content { margin-right: 0; }
    .topbar-toggle { display: flex; align-items: center; justify-content: center; }
    .landing-hero h1 { font-size: 1.5rem; }
    .page-content { padding: 1rem; }
}

@media print {
    .sidebar, .topbar, .btn, .page-header .btn { display: none !important; }
    .main-content { margin: 0; }
}

/* ─── Food + Utensils blocks (daily record) ─── */
.food-block {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 1rem;
    margin-bottom: 0.75rem;
}

.food-utensils {
    padding-top: 0.75rem;
    border-top: 1px dashed var(--border);
}

.food-utensil-default-row {
    display: flex;
    gap: 0.5rem;
    align-items: center;
    margin-bottom: 0.5rem;
}

.pagination .page-link {
    color: var(--text-secondary);
    border-color: var(--border);
    font-size: 0.8125rem;
    padding: 0.35rem 0.65rem;
}

.pagination .page-item.active .page-link {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
}

.pagination .page-link:hover {
    background: var(--bg);
    color: var(--text);
}

/* ─── Alert Modal ─── */
.zoroof-alert-modal .modal-content {
    border: none;
    border-radius: 20px;
    box-shadow: 0 24px 48px rgba(15, 23, 42, 0.16);
    overflow: hidden;
}

.zoroof-alert-modal .modal-body {
    padding: 2rem 1.75rem 1.75rem;
}

.alert-modal-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 1rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
}

.zoroof-alert-modal .modal-content[data-alert-type="success"] .alert-modal-icon {
    background: #ecfdf5;
    color: #059669;
}

.zoroof-alert-modal .modal-content[data-alert-type="error"] .alert-modal-icon {
    background: #fef2f2;
    color: #dc2626;
}

.zoroof-alert-modal .modal-content[data-alert-type="warning"] .alert-modal-icon {
    background: #fffbeb;
    color: #d97706;
}

.zoroof-alert-modal .modal-content[data-alert-type="info"] .alert-modal-icon {
    background: #eff6ff;
    color: #2563eb;
}

.alert-modal-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 0.75rem;
}

.alert-modal-message {
    color: var(--text-secondary);
    font-size: 0.9375rem;
    line-height: 1.7;
    margin-bottom: 0;
}

.alert-modal-message-extra {
    margin-top: 0.75rem;
    padding-top: 0.75rem;
    border-top: 1px solid var(--border);
}

.alert-modal-btn {
    margin-top: 1.5rem;
    min-width: 140px;
    border-radius: 10px;
    padding: 0.55rem 1.25rem;
}

.modal-backdrop.show {
    backdrop-filter: blur(2px);
}

.zoroof-alert-modal .modal-backdrop.show {
    opacity: 0.4;
}

.forecast-hint {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 0.875rem 1rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

.forecast-hint i {
    margin-left: 0.35rem;
}

/* ─── Confirm Modal ─── */
.zoroof-confirm-modal .modal-content {
    border: none;
    border-radius: 20px;
    box-shadow: 0 24px 48px rgba(15, 23, 42, 0.16);
}

.zoroof-confirm-modal .modal-body {
    padding: 2rem 1.75rem 1.75rem;
}

.confirm-modal-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 1rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    background: #fffbeb;
    color: #d97706;
}

.confirm-modal-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 0.75rem;
}

.confirm-modal-message {
    color: var(--text-secondary);
    font-size: 0.9375rem;
    line-height: 1.7;
    margin-bottom: 0;
}

.confirm-modal-actions {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 1.5rem;
    flex-wrap: wrap;
}

.confirm-modal-actions .btn {
    min-width: 110px;
    border-radius: 10px;
    padding: 0.55rem 1.1rem;
}

