/* CSS Reset and variables */
:root {
    --bg-main: #0a0e1a;
    --bg-card: rgba(17, 24, 39, 0.75);
    --bg-card-hover: rgba(26, 36, 56, 0.85);
    --border-color: rgba(255, 255, 255, 0.08);
    --border-accent: rgba(139, 92, 246, 0.3);
    
    --text-primary: #f3f4f6;
    --text-secondary: #9ca3af;
    --text-muted: #6b7280;
    
    --purple: #8b5cf6;
    --purple-hover: #7c3aed;
    --purple-glow: rgba(139, 92, 246, 0.4);
    
    --cyan: #06b6d4;
    --cyan-hover: #0891b2;
    --cyan-glow: rgba(6, 118, 212, 0.4);
    
    --green: #10b981;
    --green-hover: #059669;
    --green-glow: rgba(16, 185, 129, 0.4);
    
    --orange: #f97316;
    --orange-hover: #ea580c;
    --orange-glow: rgba(249, 115, 22, 0.4);
    
    --red: #ef4444;
    --red-hover: #dc2626;
    
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    --sidebar-width: 260px;
    --transition-speed: 0.25s;
    --border-radius: 16px;
}

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

body {
    background-color: var(--bg-main);
    color: var(--text-primary);
    font-family: var(--font-body);
    overflow-x: hidden;
    min-height: 100vh;
    background-image: 
        radial-gradient(at 10% 20%, rgba(139, 92, 246, 0.1) 0px, transparent 50%),
        radial-gradient(at 90% 80%, rgba(6, 182, 212, 0.08) 0px, transparent 50%);
    background-attachment: fixed;
}

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

/* Sidebar Styling */
.sidebar {
    width: var(--sidebar-width);
    background: rgba(17, 24, 39, 0.85);
    backdrop-filter: blur(20px);
    border-right: 1px solid var(--border-color);
    padding: 2rem 1.5rem;
    display: flex;
    flex-direction: column;
    position: fixed;
    height: 100vh;
    z-index: 100;
}

.sidebar-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 3rem;
}

.logo-icon {
    font-size: 2rem;
    color: var(--purple);
    filter: drop-shadow(0 0 8px var(--purple-glow));
}

.sidebar-header h2 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.sidebar-header h2 span {
    color: var(--cyan);
}

.sidebar-nav {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    flex-grow: 1;
}

.nav-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.85rem 1rem;
    color: var(--text-secondary);
    text-decoration: none;
    border-radius: 12px;
    font-size: 0.95rem;
    font-weight: 500;
    transition: all var(--transition-speed) ease;
    border: 1px solid transparent;
}

.nav-item i {
    font-size: 1.1rem;
    width: 20px;
    text-align: center;
}

.nav-item:hover {
    color: var(--text-primary);
    background: rgba(255, 255, 255, 0.03);
    border-color: rgba(255, 255, 255, 0.02);
}

.nav-item.active {
    color: #fff;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.2), rgba(6, 182, 212, 0.05));
    border-color: var(--border-accent);
    box-shadow: 0 4px 20px -2px rgba(139, 92, 246, 0.15);
}

.nav-item.active i {
    color: var(--purple);
    filter: drop-shadow(0 0 4px var(--purple-glow));
}

.sidebar-footer {
    padding-top: 1rem;
    border-top: 1px solid var(--border-color);
}

.exchange-rate-badge {
    background: rgba(6, 182, 212, 0.1);
    border: 1px solid rgba(6, 182, 212, 0.2);
    padding: 0.75rem;
    border-radius: 10px;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-weight: 600;
    color: var(--cyan);
}

/* Main Content Area */
.main-content {
    margin-left: var(--sidebar-width);
    flex-grow: 1;
    padding: 2rem;
    min-height: 100vh;
}

.top-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 1.5rem;
}

.header-title h1 {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: -0.5px;
    margin-bottom: 0.25rem;
    background: linear-gradient(135deg, #fff, var(--text-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.header-title p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.user-profile {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: var(--bg-card);
    padding: 0.5rem 1rem 0.5rem 0.5rem;
    border-radius: 30px;
    border: 1px solid var(--border-color);
}

.avatar {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--purple);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.1rem;
    box-shadow: 0 0 10px var(--purple-glow);
}

.user-info h4 {
    font-size: 0.9rem;
    font-weight: 600;
}

.user-info span {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.content-wrapper {
    width: 100%;
}

/* Tab contents animation */
.tab-content {
    display: none;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.tab-content.active {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

.tab-inner-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.tab-inner-header h2 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
}

/* Stats Cards */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.stat-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1.25rem;
    transition: all var(--transition-speed) ease;
}

.stat-card:hover {
    transform: translateY(-3px);
    background: var(--bg-card-hover);
    border-color: var(--border-accent);
}

.stat-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
}

.stat-icon.purple {
    background: rgba(139, 92, 246, 0.15);
    color: var(--purple);
    box-shadow: 0 0 15px rgba(139, 92, 246, 0.05);
}

.stat-icon.cyan {
    background: rgba(6, 182, 212, 0.15);
    color: var(--cyan);
}

.stat-icon.green {
    background: rgba(16, 185, 129, 0.15);
    color: var(--green);
}

.stat-icon.orange {
    background: rgba(249, 115, 22, 0.15);
    color: var(--orange);
}

.stat-details h3 {
    font-size: 0.85rem;
    color: var(--text-secondary);
    font-weight: 500;
    margin-bottom: 0.25rem;
}

.stat-details p {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
}

/* Cards & Grid Styling */
.dashboard-details-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 1.5rem;
}

.card {
    background: var(--bg-card);
    backdrop-filter: blur(12px);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    margin-bottom: 1.5rem;
    overflow: hidden;
}

.card-header {
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.card-header h3 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.card-body {
    padding: 1.5rem;
}

.warning-card {
    border-color: rgba(249, 115, 22, 0.3);
}

.warning-card h3 {
    color: var(--orange);
}

/* Empty state design */
.empty-state {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem 1rem;
    text-align: center;
    color: var(--text-secondary);
    gap: 0.75rem;
}

.empty-state i {
    font-size: 2rem;
}

/* Tables design */
.table-responsive {
    width: 100%;
    overflow-x: auto;
}

.table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
}

.table th, .table td {
    padding: 1rem;
    border-bottom: 1px solid var(--border-color);
    font-size: 0.9rem;
}

.table th {
    color: var(--text-secondary);
    font-weight: 600;
    background: rgba(255, 255, 255, 0.01);
}

.table tbody tr {
    transition: background-color var(--transition-speed) ease;
}

.table tbody tr:hover {
    background-color: rgba(255, 255, 255, 0.02);
}

.table-sm th, .table-sm td {
    padding: 0.6rem 0.8rem;
    font-size: 0.85rem;
}

/* Badges */
.badge {
    padding: 0.35rem 0.65rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    display: inline-block;
    text-transform: uppercase;
}

.badge-pending {
    background: rgba(249, 115, 22, 0.15);
    color: var(--orange);
    border: 1px solid rgba(249, 115, 22, 0.3);
}

.badge-production {
    background: rgba(6, 182, 212, 0.15);
    color: var(--cyan);
    border: 1px solid rgba(6, 182, 212, 0.3);
}

.badge-completed {
    background: rgba(16, 185, 129, 0.15);
    color: var(--green);
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.badge-cancelled {
    background: rgba(239, 68, 68, 0.15);
    color: var(--red);
    border: 1px solid rgba(239, 68, 68, 0.3);
}

/* Warehouse layout */
.warehouse-grid {
    display: grid;
    grid-template-columns: 1.2fr 1.5fr 1.3fr;
    gap: 1.5rem;
}

/* Workers layout */
.workers-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.workers-history-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 1.5rem;
    margin-top: 0.5rem;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.6rem 1.2rem;
    border-radius: 10px;
    font-weight: 500;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all var(--transition-speed) ease;
    border: 1px solid transparent;
}

.btn-purple {
    background: var(--purple);
    color: #fff;
}

.btn-purple:hover {
    background: var(--purple-hover);
    box-shadow: 0 0 12px var(--purple-glow);
}

.btn-cyan {
    background: var(--cyan);
    color: #fff;
}

.btn-cyan:hover {
    background: var(--cyan-hover);
    box-shadow: 0 0 12px var(--cyan-glow);
}

.btn-green {
    background: var(--green);
    color: #fff;
}

.btn-green:hover {
    background: var(--green-hover);
    box-shadow: 0 0 12px var(--green-glow);
}

.btn-orange {
    background: var(--orange);
    color: #fff;
}

.btn-orange:hover {
    background: var(--orange-hover);
    box-shadow: 0 0 12px var(--orange-glow);
}

.btn-red {
    background: var(--red);
    color: #fff;
}

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

.btn-outline {
    background: transparent;
    border: 1px solid var(--border-color);
    color: var(--text-secondary);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.03);
    color: var(--text-primary);
}

.btn-sm {
    padding: 0.35rem 0.75rem;
    font-size: 0.8rem;
    border-radius: 6px;
}

/* Forms */
.form-group {
    margin-bottom: 1.25rem;
}

.form-group label {
    display: block;
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
    font-weight: 500;
}

input, select, textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    background: rgba(10, 15, 30, 0.8);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: all var(--transition-speed) ease;
}

input:focus, select:focus, textarea:focus {
    outline: none;
    border-color: var(--purple);
    box-shadow: 0 0 10px rgba(139, 92, 246, 0.15);
}

.form-row {
    display: flex;
    gap: 1rem;
}

.form-row .form-group {
    flex: 1;
}

.flex-1 { flex: 1; }
.flex-2 { flex: 2; }

.checkbox-group-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
    gap: 0.75rem;
    background: rgba(10, 15, 30, 0.6);
    border: 1px solid var(--border-color);
    padding: 0.75rem 1rem;
    border-radius: 10px;
    max-height: 120px;
    overflow-y: auto;
}

.checkbox-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    font-size: 0.9rem;
}

.checkbox-item input {
    width: auto;
    cursor: pointer;
}

.input-with-button {
    display: flex;
    gap: 0.5rem;
}

.input-with-button input {
    flex-grow: 1;
}

.readonly-input {
    background: rgba(255, 255, 255, 0.02) !important;
    border-color: rgba(255, 255, 255, 0.05) !important;
    color: var(--text-muted) !important;
    cursor: not-allowed;
}

/* Modals */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(8px);
    z-index: 1000;
    align-items: center;
    justify-content: center;
}

.modal.active {
    display: flex;
}

.modal-content {
    background: #0f1626;
    border: 1px solid var(--border-accent);
    box-shadow: 0 10px 40px -10px rgba(139, 92, 246, 0.3);
    width: 90%;
    max-width: var(--modal-width, 480px);
    border-radius: 20px;
    padding: 2rem;
    position: relative;
    max-height: 90vh;
    overflow-y: auto;
}

.close-btn {
    position: absolute;
    top: 1.25rem;
    right: 1.5rem;
    font-size: 1.75rem;
    color: var(--text-secondary);
    cursor: pointer;
    transition: color var(--transition-speed) ease;
}

.close-btn:hover {
    color: #fff;
}

.modal h2 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.section-divider-title {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 600;
    border-top: 1px solid var(--border-color);
    padding-top: 1rem;
    margin-top: 1rem;
    margin-bottom: 0.75rem;
    color: var(--purple);
}

/* Material Analysis Box */
.material-analysis-box {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-color);
    padding: 1rem;
    border-radius: 12px;
    margin-bottom: 1.25rem;
}

.material-analysis-box h4 {
    font-size: 0.9rem;
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.analysis-item {
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
    margin-bottom: 0.5rem;
    color: var(--text-secondary);
}

.status-check {
    font-weight: 600;
}

.text-green { color: var(--green); }
.text-red { color: var(--red); }
.text-cyan { color: var(--cyan); }
.text-orange { color: var(--orange); }

.analysis-cable-section {
    border-top: 1px dashed var(--border-color);
    padding-top: 0.5rem;
    margin-top: 0.5rem;
}

.cable-selector-area {
    margin-top: 0.75rem;
    background: rgba(6, 182, 212, 0.05);
    border: 1px solid rgba(6, 182, 212, 0.15);
    padding: 0.75rem;
    border-radius: 8px;
}

.cable-selector-area label {
    font-size: 0.8rem;
    color: var(--cyan);
    display: block;
    margin-bottom: 0.25rem;
}

.warning-alert {
    background: rgba(249, 115, 22, 0.1);
    border: 1px solid rgba(249, 115, 22, 0.2);
    color: var(--orange);
    padding: 0.75rem;
    border-radius: 8px;
    font-size: 0.8rem;
    line-height: 1.35;
}

.total-calc-display {
    background: rgba(16, 185, 129, 0.08);
    border: 1px solid rgba(16, 185, 129, 0.15);
    padding: 1rem;
    border-radius: 10px;
    text-align: center;
    font-size: 1rem;
    margin-bottom: 1.25rem;
}

/* Warnings layout in Dashboard */
.warnings-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.warning-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(249, 115, 22, 0.08);
    border: 1px solid rgba(249, 115, 22, 0.15);
    padding: 0.75rem 1rem;
    border-radius: 10px;
    font-size: 0.85rem;
    color: var(--text-primary);
}

.warning-item i {
    color: var(--orange);
    font-size: 1.1rem;
}

.mt-2 { margin-top: 0.5rem; }
.mt-4 { margin-top: 1.5rem; }
.text-center { text-align: center; }
.text-muted { color: var(--text-muted); }
.w-full { width: 100%; }

/* Responsive adjustments */
@media (max-width: 1200px) {
    .warehouse-grid {
        grid-template-columns: 1fr;
    }
    .workers-history-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 900px) {
    .dashboard-details-grid {
        grid-template-columns: 1fr;
    }
}

/* Warehouse Layout Update */
.warehouse-top-row {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 1.5rem;
    margin-bottom: 2rem;
}
@media (max-width: 1200px) {
    .warehouse-top-row {
        grid-template-columns: 1fr;
    }
}

/* Housing Cards Styling */
.housings-card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 1.5rem;
    margin-top: 1rem;
}
.housing-card {
    background: var(--bg-card);
    backdrop-filter: blur(12px);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    overflow: hidden;
    transition: all var(--transition-speed) ease;
    display: flex;
    flex-direction: column;
}
.housing-card:hover {
    transform: translateY(-5px);
    border-color: var(--border-accent);
    box-shadow: 0 8px 30px rgba(139, 92, 246, 0.15);
}
.housing-card-image-wrapper {
    height: 180px;
    background: rgba(10, 15, 30, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    border-bottom: 1px solid var(--border-color);
}
.housing-card-image {
    max-height: 90%;
    max-width: 90%;
    object-fit: contain;
}
.housing-card-pins-badge {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    background: rgba(6, 182, 212, 0.15);
    border: 1px solid rgba(6, 182, 212, 0.3);
    color: var(--cyan);
    padding: 0.25rem 0.6rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
}
.housing-card-body {
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}
.housing-card-code {
    font-size: 0.75rem;
    color: var(--purple);
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 0.25rem;
    letter-spacing: 0.5px;
}
.housing-card-name {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    flex-grow: 1;
    line-height: 1.3;
}
.housing-card-stock {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.25rem;
    font-size: 0.9rem;
    border-top: 1px dashed var(--border-color);
    padding-top: 0.75rem;
}
.housing-card-actions {
    display: flex;
    gap: 0.5rem;
    margin-top: auto;
}
.housing-card-actions .btn {
    flex: 1;
}

/* Table Image styling */
.table-image-wrapper {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(10, 15, 30, 0.4);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
}

.table-image {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
}

/* Preset Gallery for Image URL select */
.preset-gallery {
    display: flex;
    gap: 0.5rem;
    margin-top: 0.5rem;
    overflow-x: auto;
    padding-bottom: 0.25rem;
}

.preset-thumb {
    width: 50px;
    height: 50px;
    border-radius: 6px;
    border: 1px solid var(--border-color);
    background: rgba(10, 15, 30, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--transition-speed) ease;
    flex-shrink: 0;
}

.preset-thumb:hover {
    border-color: var(--cyan);
    transform: scale(1.05);
    background: rgba(6, 182, 212, 0.05);
}

.preset-thumb img {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
}

/* Image upload custom styles */
.image-upload-container {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 6px;
    min-height: 38px;
}

.image-preview-box {
    width: 60px;
    height: 60px;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    overflow: hidden;
    position: relative;
    background: rgba(10, 15, 30, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
}

.image-preview-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.btn-clear-image {
    position: absolute;
    top: 2px;
    right: 2px;
    background: rgba(239, 68, 68, 0.85);
    border: none;
    color: white;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    font-size: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: background 0.2s ease;
}

.btn-clear-image:hover {
    background: rgb(220, 38, 38);
}

/* Lightbox Overlay for Image Zoom */
.lightbox-modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.92);
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.lightbox-modal.active {
    display: flex;
    opacity: 1;
}

.lightbox-content {
    max-width: 85%;
    max-height: 85%;
    border-radius: 8px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s cubic-bezier(0.2, 0, 0.2, 1);
    cursor: zoom-in;
    user-select: none;
}

.lightbox-content.zoomed {
    transform: scale(2.0);
    cursor: zoom-out;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: var(--text-color);
    font-size: 38px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.2s ease, transform 0.2s ease;
    z-index: 10001;
}

.lightbox-close:hover {
    color: var(--red);
    transform: scale(1.1);
}




