@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

:root {
    --font-family: 'Inter', sans-serif;
    
    /* Light Theme */
    --bg-gradient: linear-gradient(135deg, hsl(220, 75%, 96%) 0%, hsl(45, 80%, 96%) 100%);
    --card-bg: rgba(255, 255, 255, 0.94);
    --card-border: rgba(200, 210, 225, 0.85);
    --border-color: rgba(185, 200, 220, 0.6);
    --text-primary: #0f172a;
    --text-secondary: #334155;
    --primary: hsl(220, 85%, 38%);
    --primary-hover: hsl(220, 85%, 30%);
    --primary-light: hsl(220, 85%, 93%);
    --accent: hsl(45, 95%, 45%);
    --accent-light: hsl(45, 95%, 92%);
    --success: hsl(145, 75%, 30%);
    --success-light: hsl(145, 75%, 91%);
    --warning: hsl(35, 90%, 40%);
    --warning-light: hsl(35, 90%, 91%);
    --danger: hsl(355, 80%, 40%);
    --danger-light: hsl(355, 80%, 92%);
    --info: hsl(195, 80%, 35%);
    --info-light: hsl(195, 80%, 92%);
    --sidebar-bg: rgba(255, 255, 255, 0.94);
    --shadow: 0 8px 32px 0 rgba(15, 23, 42, 0.08);
    --card-shadow: 0 10px 30px -10px rgba(15, 23, 42, 0.06), 0 1px 3px rgba(15, 23, 42, 0.02);
}

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

body {
    font-family: var(--font-family);
    background-image: linear-gradient(135deg, rgba(29, 78, 216, 0.05) 0%, rgba(245, 158, 11, 0.04) 100%), url('/images/light_processing_bg.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: var(--text-primary);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
    transition: background 0.4s ease, color 0.4s ease;
}

/* Glassmorphism utility */
.glass-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 16px;
    box-shadow: var(--card-shadow);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.4s ease, border 0.4s ease;
}

.glass-card:hover {
    box-shadow: var(--shadow);
}

/* Layout */
.app-container {
    display: flex;
    min-height: 100vh;
    width: 100%;
}

.sidebar {
    width: 280px;
    background: var(--sidebar-bg);
    border-right: 1px solid var(--border-color);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 30px 20px;
    display: flex;
    flex-direction: column;
    position: fixed;
    height: 100vh;
    z-index: 100;
    transition: background 0.4s ease, border 0.4s ease;
}

.main-content {
    margin-left: 280px;
    padding: 40px;
    flex: 1;
    min-width: 0;
}

/* Typography */
h1, h2, h3, h4 {
    font-weight: 600;
    letter-spacing: -0.02em;
    margin-bottom: 0.5rem;
}

p {
    color: var(--text-secondary);
    line-height: 1.5;
}

/* Sidebar Menu */
.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 40px;
    padding: 0 10px;
}

.brand-logo {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 1.25rem;
    box-shadow: 0 4px 12px rgba(74, 144, 226, 0.3);
}

.brand-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text-primary);
}

.menu-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1;
}

.menu-item a {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px 16px;
    border-radius: 12px;
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.2s ease;
}

.menu-item a:hover, .menu-item.active a {
    color: var(--primary);
    background: var(--primary-light);
}

.menu-item.active a {
    font-weight: 600;
}

/* Theme Toggle Button */
.theme-toggle-btn {
    background: none;
    border: 1px solid var(--border-color);
    padding: 10px;
    border-radius: 10px;
    color: var(--text-secondary);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-weight: 500;
    font-size: 0.9rem;
    margin-top: auto;
    transition: all 0.2s ease;
}

.theme-toggle-btn:hover {
    border-color: var(--primary);
    color: var(--primary);
}

/* Header bar */
.top-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #ffffff; /* Solid, not transparent */
    border-bottom: 1px solid var(--border-color);
    margin-top: -40px;
    margin-left: -40px;
    margin-right: -40px;
    margin-bottom: 35px;
    padding: 20px 40px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
    transition: all 0.3s ease;
}

.user-profile {
    display: flex;
    align-items: center;
    gap: 12px;
}

.avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent), var(--primary));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.user-info {
    display: flex;
    flex-direction: column;
}

.user-name {
    font-weight: 600;
    font-size: 0.95rem;
}

.user-role {
    font-size: 0.8rem;
    color: var(--text-secondary);
}

/* Counters / Dashboard Widgets */
.dashboard-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 25px;
    margin-bottom: 40px;
}

.stat-widget {
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.stat-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.stat-title {
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-secondary);
}

.stat-value {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-primary);
}

.stat-widget.primary {
    background: linear-gradient(135deg, rgba(29, 78, 216, 0.05) 0%, rgba(29, 78, 216, 0.12) 100%);
    border-color: rgba(29, 78, 216, 0.2);
}
.stat-widget.primary .stat-value {
    color: var(--primary);
}

.stat-widget.warning {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.05) 0%, rgba(217, 119, 6, 0.12) 100%);
    border-color: rgba(217, 119, 6, 0.2);
}
.stat-widget.warning .stat-value {
    color: #d97706;
}

.stat-widget.success {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.05) 0%, rgba(5, 150, 105, 0.12) 100%);
    border-color: rgba(5, 150, 105, 0.2);
}
.stat-widget.success .stat-value {
    color: var(--success);
}

.stat-widget.danger {
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.05) 0%, rgba(220, 38, 38, 0.12) 100%);
    border-color: rgba(220, 38, 38, 0.2);
}
.stat-widget.danger .stat-value {
    color: var(--danger);
}

.stat-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.stat-icon.primary { background: var(--primary-light); color: var(--primary); }
.stat-icon.success { background: var(--success-light); color: var(--success); }
.stat-icon.warning { background: var(--warning-light); color: var(--warning); }
.stat-icon.danger { background: var(--danger-light); color: var(--danger); }

/* Forms & Inputs */
.form-group {
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-primary);
}

.form-control {
    width: 100%;
    padding: 12px 16px;
    border-radius: 10px;
    border: 1px solid var(--border-color);
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-primary);
    font-size: 0.95rem;
    outline: none;
    transition: all 0.2s ease;
}

.form-control:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(74, 144, 226, 0.15);
}

select.form-control {
    appearance: none;
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23888' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    background-size: 16px;
    padding-right: 40px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    border: none;
    outline: none;
    transition: all 0.2s ease;
    text-decoration: none;
}

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

.btn-primary:hover {
    background: var(--primary-hover);
    transform: translateY(-1px);
}

.btn-secondary {
    background: var(--border-color);
    color: var(--text-primary);
}

.btn-secondary:hover {
    background: rgba(0, 0, 0, 0.05);
}

.btn-danger {
    background: var(--danger);
    color: white;
}

.btn-danger:hover {
    background: hsl(355, 80%, 40%);
}

.btn-success {
    background: var(--success);
    color: white;
}

.btn-success:hover {
    background: hsl(145, 75%, 30%);
}

/* Tables */
.table-container {
    overflow-x: auto;
    width: 100%;
    margin-bottom: 20px;
}

.custom-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
    font-size: 0.9rem;
}

.custom-table th {
    padding: 16px 20px;
    font-weight: 600;
    color: var(--text-secondary);
    border-bottom: 2px solid var(--border-color);
    background: rgba(0, 0, 0, 0.02);
}

.custom-table td {
    padding: 16px 20px;
    border-bottom: 1px solid var(--border-color);
    color: var(--text-primary);
}

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

.custom-table tbody tr:hover {
    background: rgba(0, 0, 0, 0.015);
}

/* Status Badges */
.badge {
    display: inline-flex;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.badge-success { background: var(--success-light); color: hsl(145, 80%, 20%) !important; }
.badge-warning { background: var(--warning-light); color: hsl(35, 95%, 20%) !important; }
.badge-danger { background: var(--danger-light); color: hsl(355, 85%, 20%) !important; }
.badge-primary { background: var(--primary-light); color: hsl(220, 90%, 20%) !important; }
.badge-info { background: var(--info-light); color: hsl(195, 90%, 18%) !important; }

/* Landing Page (Login Screen) */
.login-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    width: 100%;
    padding: 20px;
}

.login-card {
    width: 100%;
    max-width: 440px;
    padding: 40px;
}

.login-logo {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
}

.login-header {
    text-align: center;
    margin-bottom: 35px;
}

.login-header h2 {
    font-size: 1.75rem;
    color: var(--text-primary);
}

.login-header p {
    font-size: 0.9rem;
}

.forgot-password-link {
    font-size: 0.85rem;
    color: var(--primary);
    text-decoration: none;
    align-self: flex-end;
    transition: color 0.2s ease;
}

.forgot-password-link:hover {
    color: var(--primary-hover);
}

/* Alerts */
.alert {
    padding: 14px 20px;
    border-radius: 10px;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.alert-danger {
    background: var(--danger-light);
    color: var(--danger);
    border-left: 4px solid var(--danger);
}

.alert-success {
    background: var(--success-light);
    color: var(--success);
    border-left: 4px solid var(--success);
}

/* Modals */
.modal-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.modal-backdrop.show {
    opacity: 1;
    pointer-events: auto;
}

.modal-content {
    width: 100%;
    max-width: 500px;
    padding: 30px;
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.modal-backdrop.show .modal-content {
    transform: scale(1);
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
}

.modal-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--text-secondary);
    cursor: pointer;
}

/* Page Section Card Styles */
.section-card {
    padding: 30px;
    margin-bottom: 30px;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 15px;
}

/* Pagination */
.pagination {
    display: flex;
    gap: 8px;
    justify-content: center;
    margin-top: 25px;
}

.pagination-item {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    text-decoration: none;
    color: var(--text-primary);
    font-weight: 500;
    transition: all 0.2s ease;
}

.pagination-item:hover, .pagination-item.active {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}

.pagination-item.disabled {
    pointer-events: none;
    opacity: 0.5;
}

/* --- Professional Designer Landing Page Additions --- */
.login-wrapper {
    position: relative;
    min-height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    background-image: url('/images/light_processing_bg.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    overflow: hidden;
}

.login-wrapper::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(135deg, rgba(29, 78, 216, 0.14) 0%, rgba(245, 158, 11, 0.1) 100%);
    backdrop-filter: blur(2px);
    z-index: 1;
}

.login-container {
    position: relative;
    z-index: 2;
    display: flex;
    width: 100%;
    max-width: 1100px;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

.brand-showcase {
    flex: 1.1;
    color: #1f2937;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.brand-badge {
    align-self: flex-start;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--primary-light);
    border: 1px solid rgba(29, 78, 216, 0.2);
    padding: 6px 14px;
    border-radius: 30px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--primary);
}

.brand-showcase h1 {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.15;
    background: linear-gradient(135deg, #1e3a8a 30%, var(--primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 10px;
}

.brand-showcase p.lead-text {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #4b5563;
    max-width: 520px;
}

.showcase-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 10px;
}

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

.feature-icon-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: var(--primary-light);
    border: 1px solid rgba(29, 78, 216, 0.12);
    border-radius: 12px;
    color: var(--primary);
    font-size: 1.25rem;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(29, 78, 216, 0.05);
}

.feature-text-wrapper h3 {
    font-size: 1rem;
    font-weight: 600;
    color: #1e3a8a;
    margin-bottom: 4px;
}

.feature-text-wrapper p {
    font-size: 0.85rem;
    color: #6b7280;
    line-height: 1.4;
}

.login-card-wrapper {
    flex: 0.9;
    display: flex;
    justify-content: flex-end;
    width: 100%;
}

.login-card {
    position: relative;
    z-index: 2;
    background: rgba(255, 255, 255, 0.75);
    border: 1px solid rgba(94, 23, 235, 0.12);
    box-shadow: 0 25px 60px rgba(94, 23, 235, 0.06), inset 0 1px 0 rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 24px;
    width: 100%;
    max-width: 440px;
    padding: 40px;
}

.login-logo-container {
    display: flex;
    justify-content: center;
    margin-bottom: 25px;
}

.login-card h2 {
    text-align: center;
    font-size: 1.6rem;
    font-weight: 700;
    color: #2d0066;
    margin-bottom: 6px;
}

.login-card p.subtitle {
    text-align: center;
    font-size: 0.85rem;
    color: #4b5563;
    margin-bottom: 30px;
}

.form-group-glow {
    position: relative;
}

.form-group-glow .form-label {
    color: #1f2937;
}

.form-group-glow .form-control {
    background: rgba(255, 255, 255, 0.85);
    border: 1px solid rgba(29, 78, 216, 0.15);
    color: #1e1b4b;
    padding: 14px 18px;
    border-radius: 12px;
    font-size: 0.95rem;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.form-group-glow .form-control:focus {
    border-color: var(--primary);
    background: #ffffff;
    box-shadow: 0 0 0 4px rgba(29, 78, 216, 0.12);
}

.btn-glowing {
    background: linear-gradient(135deg, var(--primary) 0%, #1e3a8a 100%);
    color: #ffffff !important;
    font-weight: 700;
    font-size: 1rem;
    border-radius: 12px;
    height: 50px;
    box-shadow: 0 4px 15px rgba(29, 78, 216, 0.2);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-glowing:hover {
    background: linear-gradient(135deg, #3b82f6 0%, #1e3a8a 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(29, 78, 216, 0.35);
}

.forgot-password-link {
    color: var(--primary);
}

.forgot-password-link:hover {
    color: #1e3a8a;
}

@media (max-width: 900px) {
    .login-container {
        flex-direction: column;
        gap: 40px;
        align-items: center;
    }
    .brand-showcase {
        display: none;
    }
    .login-card-wrapper {
        justify-content: center;
    }
}

/* DataTables Custom Styles & Overrides */
.dataTables_wrapper {
    font-family: var(--font-family);
    padding: 10px 0;
}

.dataTables_wrapper .dataTables_length select {
    border: 1px solid var(--border-color);
    border-radius: 6px;
    padding: 6px 12px;
    background-color: #ffffff;
    color: var(--text-primary);
    font-size: 0.85rem;
    outline: none;
}

.dataTables_wrapper .dataTables_filter input {
    border: 1px solid var(--border-color);
    border-radius: 6px;
    padding: 6px 12px;
    background-color: #ffffff;
    color: var(--text-primary);
    font-size: 0.85rem;
    margin-left: 8px;
    outline: none;
    width: 220px;
}

.dataTables_wrapper .dataTables_filter input:focus,
.dataTables_wrapper .dataTables_length select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.15);
}

.dataTables_wrapper .dataTables_info {
    color: var(--text-secondary);
    font-size: 0.85rem;
    padding-top: 15px;
}

.dataTables_wrapper .dataTables_paginate {
    padding-top: 15px;
}

.dataTables_wrapper .dataTables_paginate .paginate_button {
    border: 1px solid var(--border-color) !important;
    border-radius: 6px !important;
    padding: 6px 14px !important;
    background: #ffffff !important;
    color: var(--text-primary) !important;
    font-size: 0.85rem !important;
    transition: all 0.2s ease;
    margin: 0 2px;
}

.dataTables_wrapper .dataTables_paginate .paginate_button:hover {
    background: var(--primary) !important;
    color: #ffffff !important;
    border-color: var(--primary) !important;
}

.dataTables_wrapper .dataTables_paginate .paginate_button.current,
.dataTables_wrapper .dataTables_paginate .paginate_button.current:hover {
    background: var(--primary) !important;
    color: #ffffff !important;
    border-color: var(--primary) !important;
    font-weight: 600;
}

.dataTables_wrapper .dataTables_paginate .paginate_button.disabled,
.dataTables_wrapper .dataTables_paginate .paginate_button.disabled:hover {
    background: rgba(0, 0, 0, 0.02) !important;
    color: var(--text-secondary) !important;
    border-color: var(--border-color) !important;
    cursor: default;
}

/* Button loading state animation */
.btn-loading {
    position: relative;
    color: transparent !important;
    pointer-events: none;
}

.btn-loading::after {
    content: "";
    position: absolute;
    width: 20px;
    height: 20px;
    top: 50%;
    left: 50%;
    margin-top: -10px;
    margin-left: -10px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: #ffffff;
    animation: btn-spinner 0.6s linear infinite;
}

@keyframes btn-spinner {
    to {
        transform: rotate(360deg);
    }
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

/* Premium Confirmation Modal Styles */
.custom-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.4);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    opacity: 0;
    transition: opacity 0.25s ease;
}
.custom-modal-overlay.active {
    opacity: 1;
}
.custom-modal {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 16px;
    width: 90%;
    max-width: 440px;
    padding: 28px;
    box-shadow: var(--shadow);
    transform: scale(0.92);
    transition: transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.custom-modal-overlay.active .custom-modal {
    transform: scale(1);
}
.custom-modal-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}
.custom-modal-icon {
    font-size: 1.8rem;
}
.custom-modal-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0;
}
.custom-modal-body {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 24px;
}
.custom-modal-detail-box {
    background: rgba(59, 130, 246, 0.03);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    padding: 15px;
    margin-top: 15px;
}
.custom-modal-footer {
    display: flex;
    justify-content: flex-end;
    gap: 12px;
}
