
    /* THEME MAP */
    :root {
        --primary: #FF4F01;
        --accent: #150958;
        
        --blue: #1e73be;
        --indigo: #6610f2;
        --purple: #6f42c1;
        --pink: #e83e8c;
        --red: #dd3333;
        --orange: #ff7f00;
        --dark-orange: #cc6600;
        --yellow: #f59e0b;
        --green: #28a745;
        --teal: #20c997;
        --cyan: #17a2b8;
        --white: #ffffff;
        --gray: #cccccc;
        --gray-dark: #6c757d;
        --accent1: var(--primary);
        --accent2: var(--accent);
        --shade1: #FF4F011A;
        --shade2: #1509581A;

        --bg-rail: #f1f5f9;      
        --bg-side: var(--white);
        --bg-app: #f4f7fe;       
        --bg-card: var(--white);
        --text-bold: #333333;
        --text-dim: var(--gray-dark);
        --border-base: var(--gray);
        --rail-icon: var(--accent);
        
        /* TailAdmin Native Colors */
        --success: var(--green);
        --danger: var(--red);
        --warning: var(--yellow);
        --info: var(--cyan);
        
        --border-radius: 7px;
        
        --font-size: 13px;
    }

    .dark {
        --primary: #150958;
        --accent: #FF4F01;
        
        --gray-dark: #374151;
        
        --bg-base: #1e293b;
        --bg-sections: #0f172a;
        --bg-rail: var(--bg-sections);
        --bg-side: var(--bg-base);
        --bg-app: var(--bg-sections);
        --bg-card: var(--bg-base);
        --text-bold: #f8fafc;
        --text-dim: #94a3b8;
        --border-base: #334155;
        --rail-icon: #f8fafc;    
    }

    /* TailAdmin Native Utility Classes */
    .text-success { color: var(--success); font-weight:bold; }
    .bg-success, .text-success:hover { background-color: color-mix(in srgb, var(--success), transparent 80%); }
    .border-success { border-color: var(--success); }
    
    .text-danger { color: var(--danger); font-weight:bold; }
    .bg-danger, .text-danger:hover { background-color: color-mix(in srgb, var(--danger), transparent 80%); }
    .border-danger { border-color: var(--danger); }

    .text-warning { color: var(--warning); font-weight:bold; }
    .bg-warning, .text-warning:hover { background-color: color-mix(in srgb, var(--warning), transparent 80%);}
    .border-warning { border-color: var(--warning); }

    .text-info { color: var(--info); font-weight:bold; }
    .bg-info, .text-info:hover { background-color: color-mix(in srgb, var(--info), transparent 80%);}
    .border-info { border-color: var(--info); }

    /* MASTER CLASSES */
    body { background-color: var(--bg-app); color: var(--text-bold); transition: none; font-size: var(--font-size); }
    
    .app-rail { background-color: var(--bg-rail); border-right: 1px solid var(--border-base); width: 64px; min-width: 64px; flex-shrink: 0; position: relative; z-index: 50; }
    
    /* Persistent Secondary Sidebar - Optimized for performance */
    .app-side { 
        background-color: var(--bg-side); 
        border-right: 1px solid var(--border-base); 
        width: 256px; 
        min-width: 256px; 
        flex-shrink: 0; 
        z-index: 30;
        transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1), margin-left 0.25s cubic-bezier(0.4, 0, 0.2, 1);
        will-change: transform;
        height: 100vh; /* Ensure full height */
        display: flex;
        flex-direction: column;
    }
    
    /* PRE-LOAD COLLAPSE: Prevent Flash */
    html.is-collapsed .app-side {
        margin-left: -256px !important;
        visibility: hidden;
    }

    /* ACTIVE COLLAPSE: Performance optimized */
    .app-side.collapsed {
        margin-left: -256px;
        pointer-events: none;
    }

    .app-side-flyout { 
        background-color: var(--bg-side); 
        border-right: 1px solid var(--border-base); 
        width: 256px; 
        position: absolute;
        top: 0;
        left: 64px;
        height: 100%;
        box-shadow: 15px 0 30px -5px rgba(0, 0, 0, 0.1);
        z-index: 60;
        display: flex;
        flex-direction: column;
    }
    
    .app-header { background-color: var(--bg-card); border-bottom: 1px solid var(--border-base); min-width: 0; flex-shrink: 0; height: 64px; min-height: 64px; }
    .app-card { background-color: var(--bg-card); border: 1px solid var(--border-base); }
    
    .text-main { color: var(--text-bold); }
    .text-muted { color: var(--text-dim); }
    .border-main { border-color: var(--border-base); }
    
    .bg-primary-theme { background-color: var(--primary) !important; }
    .bg-accent-theme { background-color: var(--accent) !important; }
    .text-accent-theme { color: var(--accent) !important; }
    .border-accent-theme { border-color: var(--accent) !important; }
    
    .pop-card { background-color: var(--bg-card); }
    .dark .pop-card {}
    
    

    /* Fixed Sidebar Header - Ensuring it never squishes */
    .sidebar-header-fixed {
        height: 64px !important;
        min-height: 64px !important;
        max-height: 64px !important;
        flex-shrink: 0 !important;
        display: flex;
        align-items: center;
        padding: 0 2rem;
        border-bottom: 1px solid var(--border-base);
        width: 100%;
    }

    /* CHECKBOX STYLES (TailAdmin Inspired) */
    input[type="checkbox"] {
        appearance: none;
        -webkit-appearance: none;
        width: 18px;
        height: 18px;
        border: 1.5px solid var(--border-base);
        border-radius: 4px;
        background-color: transparent;
        cursor: pointer;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        position: relative;
        transition: all 0.2s;
        vertical-align: middle;
    }

    input[type="checkbox"]:checked {
        background-color: var(--accent);
        border-color: var(--accent);
    }

    input[type="checkbox"]:checked::after {
        content: "\f00c";
        font-family: "Font Awesome 7 Free";
        font-weight: 900;
        color: var(--white);
        font-size: 10px;
        position: absolute;
    }
    
    /* Only shrink labels that are being used as toggles */
    label:has(.accu-toggle) {
        width: max-content;
        max-width: 100%; /* Ensure it doesn't overflow on small screens */
    }

    .wpdt-c.wpDataTables { background: transparent !important; }
    .dark .wpDataTables table, 
    .dark .wpDataTables table.dataTable,
    .dark .wpDataTables table.dataTable tbody tr,
    .dark .wpDataTables table.dataTable tbody td,
    .dark .wpDataTables thead th, 
    .dark .wpDataTables td { 
        background-color: var(--bg-card) !important; 
        color: var(--text-bold) !important; 
        border-color: var(--border-base) !important; 
    }
    .dark .wpDataTables_wrapper .dataTables_paginate .paginate_button { 
        background-color: var(--bg-card) !important;
        color: var(--text-bold) !important; 
        border-color: var(--border-base) !important;
    }
    .dark .wpDataTables_wrapper .dataTables_length select,
    .dark .wpDataTables_wrapper .dataTables_filter input {
        background-color: var(--bg-app) !important;
        color: var(--text-bold) !important;
        border: 1px solid var(--border-base) !important;
    }
    .dark .wpDataTablesWrapper div.dt-buttons {
        color: var(--text-bold) !important;
    }

    .app-card h1, h1.entry-title, .wp-block-post-title { font-size: 1.5rem !important; font-weight: 700 !important; margin-bottom: 1.25rem !important; color: var(--text-bold) !important; line-height: 1.2 !important; }

    .theme-toggling * { transition: none !important; }

    .custom-scroll::-webkit-scrollbar { width: 4px; height: 4px; }
    .custom-scroll::-webkit-scrollbar-thumb { background: rgba(100,100,100,0.2); border-radius: 10px; }

    .rail-action-btn {
        position: relative;
        width: 40px;
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: var(--border-radius);
        transition: all 0.2s;
        color: var(--rail-icon);
        opacity: 0.7;
    }
    .rail-action-btn:hover {
        opacity: 1;
        background-color: rgba(0, 0, 0, 0.05);
    }
    .dark .rail-action-btn:hover {
        background-color: rgba(255, 255, 255, 0.1);
    }

    /* --- Base Tooltip Styles --- */
    .tooltip {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        background: var(--accent);
        color: var(--white);
        padding: 5px 10px;
        border-radius: 4px;
        font-size: 11px;
        font-weight: 600;
        white-space: nowrap;
        pointer-events: none;
        opacity: 0;
        transition: all 0.2s ease-in-out;
        z-index: 100;
        box-shadow: 0 4px 6px -1px rgba(0,0,0,0.1);
    }
    
    .tooltip::after {
        content: "";
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        border: 5px solid transparent;
    }
    
    /* --- Dark Mode (Global for all tooltips) --- */
    .dark .tooltip {
        background: var(--white);
        color: var(--primary);
    }
    
    /* --- Right Position (Default/Original) --- */
    .tooltip-right {
        left: 110%;
    }
    .tooltip-right::after {
        right: 100%;
        border-right-color: var(--accent);
    }
    .dark .tooltip-right::after {
        border-right-color: var(--white);
    }
    .rail-action-btn:hover .tooltip-right {
        opacity: 1;
        left: 120%;
    }
    
    /* --- Left Position --- */
    .tooltip-left {
        right: 110%;
    }
    .tooltip-left::after {
        left: 100%;
        border-left-color: var(--accent);
    }
    .dark .tooltip-left::after {
        border-left-color: var(--white);
    }
    .rail-action-btn:hover .tooltip-left {
        opacity: 1;
        right: 120%;
    }
    .menu-item-rounded, .item-rounded {
        border-radius: var(--border-radius) !important;
    }
    
    .akzescardheader {
        font-weight: bold;
        font-size: 120%;
    }
    
    .dark .akzescardheader {
        
    }
    
    /* STATUS BADGES & ICONS (TailAdmin Inspired - Light Background Style) */
    .status-badge, .status-icon {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        margin: 4px;
        border-radius: var(--border-radius) !important; /* Forces .item-rounded style */
    }

    .status-badge {
        padding: 1px 12px;
    }

    .status-icon {
        padding: 7px;
        cursor: pointer;
    }

    /* Status 1: Active / Success */
    .status-1-badge { background-color: rgba(16, 185, 129, 0.1); color: var(--success); }
    .status-1-icon { background-color: rgba(16, 185, 129, 0.1); color: var(--success); }
    .dark .status-1-badge { background-color: rgba(16, 185, 129, 0.2); }

    /* Status 0: Inactive / Warning */
    .status-0-badge { background-color: rgba(245, 158, 11, 0.1); color: var(--warning); }
    .status-0-icon { background-color: rgba(245, 158, 11, 0.1); color: var(--warning); }
    .dark .status-0-badge { background-color: rgba(245, 158, 11, 0.2); }

    /* Status 2: Cancel / Error / Danger */
    .status-2-badge { background-color: rgba(251, 72, 72, 0.1); color: var(--danger); }
    .status-2-icon { background-color: rgba(251, 72, 72, 0.1); color: var(--danger); }
    .dark .status-2-badge { background-color: rgba(251, 72, 72, 0.2); }

    /* Status 4: Info  */
    .status-4-badge { background-color: rgba(59, 162, 184, 0.1); color: var(--info); }
    .status-4-icon { background-color: rgba(59, 162, 184, 0.1); color: var(--info); }
    .dark .status-4-badge { background-color: rgba(59, 162, 184, 0.2); }
    
    /* Neutral */
    .status-z-badge { background-color: var(--shade2); color: var(--accent2); }
    .status-z-icon { background-color: var(--accent2); color: var(--accent2); }
    .dark .status-z-badge { background-color: var(--accent2); color: var(--white); }

    /* Branch Labels Bottom Aligned */
    .rotate-container { height: 160px; display: flex; flex-direction: column; align-items: center; justify-content: flex-end; }
    .rotate-text { writing-mode: vertical-lr; transform: rotate(180deg); white-space: nowrap; margin-bottom: 10px; }

    /* Crosshair Highlighting - Using accent2 (#ef4444) */
    .highlight { background-color: var(--primary) !important; color: var(--white) !important; }
    .highlight label, .highlight input { cursor: pointer; }
    .highlight .text-muted, .highlight .text-main { color: var(--white) !important; }
    
    .light { transition: background-color 0.02s ease; cursor: pointer; position: relative; }

    [x-cloak] { display: none !important; }
    
    /* =========================================================
       Input controls
       ========================================================= */
    
    /* ---------- Base ---------- */
    .form-control {
        width: 100%;
        min-height: 42px;
        padding: 0 14px;
        border-radius: var(--border-radius);
        border: 1px solid var(--border-base);
        font-weight: 400;
        line-height: 1.4;
        outline: none;
        transition:
            border-color 0.15s ease,
            box-shadow 0.15s ease,
            background-color 0.15s ease;
    }
    
    /* ---------- Textarea ---------- */
    textarea.form-control {
        min-height: 96px;
        padding: 10px 14px;
        resize: vertical;
    }
    
    /* ---------- Select ---------- */
    select.form-control {
        padding-right: 36px;
        background-repeat: no-repeat;
        background-position: right 12px center;
        background-size: 14px;
    }
    
    /* ---------- Placeholder ---------- */
    .form-control::placeholder {
        color: var(--text-dim);
        font-weight: 400;
    }
    
    /* ---------- Focus ---------- */
    .form-control:focus {
        box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.15); /* TailAdmin-like */
    }
    
    /* ---------- Disabled ---------- */
    .form-control:disabled,
    .form-control[readonly] {
        background-color: var(--gray);
        cursor: not-allowed;
        opacity: 0.7;
    }
    
    span.required, span.requiredstat, label.is-invalid {
    	color: var(--red);
    	font-size: 95%;
    }
    
    /* =========================================================
       LABELS (inputs are already wrapped in labels)
       ========================================================= */
    
    label {
        display: block;
        font-size: var(--font-size);
        font-weight: 600; /* bold label */
        color: var(--text-bold);
        cursor: pointer;
    }
    
    label .form-control,
    label select,
    label textarea {
        margin-top: 6px;
        font-weight: 400; /* input text normal */
    }
    
    /* =========================================================
       DARK MODE
       ========================================================= */
    
    .dark .form-control {
        background-color: var(--bg-card);
        border-color: var(--border-base);
        color: var(--white);
    }
    
    .dark .form-control::placeholder {
        color: var(--text-dim);
    }
    
    .dark .form-control:focus {
        box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.25);
    }
    
    .dark label {
        color: var(--white);
    }
    
    .dark .form-control:disabled,
    .dark .form-control[readonly] {
        background-color: var(--gray-dark);
    }
    
    /* form group */
    .dark .bg-gray-50 {
        --tw-bg-opacity: .2;
    }
    
    /* =========================================================
       Choices.js Integration (Matches .form-control)
       ========================================================= */
    
    /* 1. Base Structure */
    .choices {
        margin-top: 6px; /* Matches 'label .form-control' margin */
        margin-bottom: 0;
    }
    
    .choices__inner {
        width: 100%;
        min-height: 42px !important; /* Match .form-control */
        padding: 0 14px !important;
        border-radius: var(--border-radius) !important;
        border: 1px solid var(--border-base) !important;
        background-color: var(--white);
        display: flex;
        align-items: center;
        transition: border-color 0.15s ease, box-shadow 0.15s ease;
    }
    
    /* 2. Fix the Bold Issue: Ensure text inside is normal weight */
    .choices__list--single, 
    .choices__input, 
    .choices__item {
        font-weight: 400 !important; /* Unbolds the selection text */
        font-size: var(--font-size);
        background: none;
    }
    
    /* 3. Focus State */
    .choices.is-focused .choices__inner {
        box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.15) !important;
    }
    
    /* 4. Placeholder Styling */
    .choices__list--single .choices__item.choices__placeholder,
    .choices__placeholder,
    .choices__input::placeholder {
        color: var(--pink) !important;
        opacity: 1;
        font-weight: 400 !important;
    }
    .choices__list--dropdown {
        position: absolute;
        z-index: 9999;
    }
    
    .choices__input {
        margin-bottom: 0;
    }
    
    /* =========================================================
       Choices.js DARK MODE
       ========================================================= */
    
    .dark .choices__inner,
    .dark .choices__input,
    .dark .choices__list--dropdown {
        background-color: var(--bg-card) !important;
        border-color: var(--border-base) !important;
        color: var(--white) !important;
    }
    
    /* Dark Mode Focus */
    .dark .choices.is-focused .choices__inner {
        box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.25) !important;
    }
    
    /* Dark Mode Dropdown Items */
    .dark .choices__list--dropdown .choices__item--selectable {
        background-color: var(--bg-card);
        color: var(--white);
    }
    
    .dark .choices__list--dropdown .choices__item--selectable.is-highlighted {
        background-color: var(--gray-dark) !important;
    }
    
    /* Dark Mode Placeholder */
    .dark .choices__placeholder {
        color: var(--text-dim) !important;
    }
    
    /* Dark Mode Arrow Icon */
    .dark .choices[data-type*="select-one"]::after {
        border-color: var(--white) transparent transparent transparent;
    }
    
    /* --- Multi-Select Tag Styling --- */

    /* The Tag Container */
    .choices__list--multiple .choices__item {
        background-color: var(--accent) !important;
        border: 1px solid var(--accent) !important;
        border-radius: 4px !important;
        padding: 3px 10px !important;
        margin: 3px 10px 3px 0;
    }
    
    /* The 'X' Remove Button inside the Tag */
    .choices__list--multiple .choices__item .choices__button {
        border-left: unset;
        margin-left: 8px !important;
        padding-left: 4px !important;
        opacity: 0.8;
    }
    
    .choices__list--multiple .choices__item .choices__button:hover {
        opacity: 1;
    }
    
    /* --- Dark Mode Overrides --- */
    .dark .choices__list--multiple .choices__item {
    }
    
    /* Style for the input area when items are already selected */
    .choices__inner {
        display: flex;
        flex-wrap: wrap;
        gap: 4px;
        padding-top: 4px !important;
        padding-bottom: 4px !important;
    }
    
    /* Slider toggle using theme variables */
    .accu-toggle {
        position: relative;
        width: 44px;
        height: 24px;
    }

    .accu-toggle input {
        opacity: 0;
        width: 0;
        height: 0;
    }

    .accu-slider {
        position: absolute;
        inset: 0;
        background: var(--gray);
        border-radius: 999px;
        transition: background .25s ease;
    }

    .accu-slider::before {
        content: '';
        position: absolute;
        height: 18px;
        width: 18px;
        left: 3px;
        top: 3px;
        background: #fff;
        border-radius: 50%;
        transition: transform .25s ease;
    }

    .accu-toggle input:checked + .accu-slider {
        background: var(--accent);
    }

    .accu-toggle input:checked + .accu-slider::before {
        transform: translateX(20px);
    }

	button.swal2-confirm.danger.swal2-styled {
		background: var(--red) !important;
		color: var(--white);
	}

	button.swal2-cancel.swal2-styled {
		background-color: var(--gray) !important;
		color: inherit;
	}
    
	button.swal2-cancel.swal2-styled:hover {
		background-color: var(--gray-dark) !important;
		color: var(--white);
	}

	button.swal2-confirm.swal2-styled {
		background-color: var(--accent);
	}
	
	/* =========================
       Table. Usage: <table class="botable">
       ========================= */
    
    .botable {
        width: 100%;
        border-collapse: separate;
        border-spacing: 0;
        background: var(--card-bg, #ffffff);
        border: 1px solid var(--gray);
        border-radius: 0.75rem; /* rounded-xl */
        overflow: hidden;
        font-size: 0.875rem; /* text-sm */
    }
    
    /* Header */
    .botable th {
        text-align: left;
        font-weight: 600;
        color: var(--accent); /* gray-900 */
        background: #f9fafb; /* gray-50 */
        padding: 0.625rem 0.75rem; /* gray */
        border-bottom: 1px solid var(--gray);
        white-space: nowrap;
    }
    
    /* Body cells */
    .botable td {
        padding: 8px 12px;
        border-bottom: 1px solid var(--gray);
        vertical-align: middle;
        white-space: nowrap;
    }
    
    /* Remove last row border */
    .botable tr:last-child td {
        border-bottom: 0;
    }
    
    /* Row hover */
    .botable tbody tr:hover td {
        background: rgba(59, 130, 246, 0.04); /* subtle primary tint */
    }
    
    /* =========================
       Dark mode
       ========================= */
    
    .dark .botable {
        background: #1f2937; /* gray-800 */
        border-color: var(--gray-dark);
    }
    
    .dark .botable th {
        background: var(--bg-rail); /* gray-900 */
    }
    
    .dark .botable td {
        color: var(--gray);
        border-bottom-color: var(--gray-dark);
    }
    
    .dark .botable tbody tr:hover td {
        background: rgba(59, 130, 246, 0.12);
    }
    
    /* Chrome, Safari, Edge, Opera */
    input::-webkit-outer-spin-button,
    input::-webkit-inner-spin-button {
      -webkit-appearance: none;
      margin: 0;
    }
    
    /* Firefox */
    input[type=number] {
      -moz-appearance: textfield;
    }
    
    
    /* Tempus-Dominus Date Picker*/
    .dark .tempus-dominus-widget {
        background-color: var(--bg-rail);
        color: var(--white);
        border: 1px solid #dee2e6 !important;
    }
    
    /* 1. All days in the current month should be White */
    .dark .tempus-dominus-widget .date-container-days div {
        color: var(--white);
    }
    
    /* 2. Days from the PREVIOUS or NEXT month should be Gray/Dimmed */
    .dark .tempus-dominus-widget .date-container-days div.old,
    .dark .tempus-dominus-widget .date-container-days div.new {
        color: var(--gray) !important; /* Adjust this to your gray variable */
        opacity: 0.4; /* Optional: adds extra visual separation */
    }
    
    /* 3. Hover state for better UX */
    .dark .tempus-dominus-widget .date-container-days div:hover {
        background-color: rgba(255, 255, 255, 0.1) !important;
    }
    
    /* 4. Active (Selected) Day - Keep it high contrast */
          .tempus-dominus-widget.light .date-container-days div.range-end:not(.no-highlight), 
          .tempus-dominus-widget.light .date-container-days div.range-in:not(.no-highlight), 
          .tempus-dominus-widget.light .date-container-days div.range-start:not(.no-highlight), 
          .tempus-dominus-widget.light .date-container-days div:not(.no-highlight).active, 
          .tempus-dominus-widget.light .date-container-decades div:not(.no-highlight).active, 
          .tempus-dominus-widget.light .date-container-months div:not(.no-highlight).active, 
          .tempus-dominus-widget.light .date-container-years div:not(.no-highlight).active, 
          .tempus-dominus-widget.light .time-container-clock div:not(.no-highlight).active, 
          .tempus-dominus-widget.light .time-container-hour div:not(.no-highlight).active, 
          .tempus-dominus-widget.light .time-container-minute div:not(.no-highlight).active, 
          .tempus-dominus-widget.light .time-container-second div:not(.no-highlight).active,
          
    .dark .tempus-dominus-widget.light .date-container-days div.range-end:not(.no-highlight), 
    .dark .tempus-dominus-widget.light .date-container-days div.range-in:not(.no-highlight), 
    .dark .tempus-dominus-widget.light .date-container-days div.range-start:not(.no-highlight), 
    .dark .tempus-dominus-widget.light .date-container-days div:not(.no-highlight).active, 
    .dark .tempus-dominus-widget.light .date-container-decades div:not(.no-highlight).active, 
    .dark .tempus-dominus-widget.light .date-container-months div:not(.no-highlight).active, 
    .dark .tempus-dominus-widget.light .date-container-years div:not(.no-highlight).active, 
    .dark .tempus-dominus-widget.light .time-container-clock div:not(.no-highlight).active, 
    .dark .tempus-dominus-widget.light .time-container-hour div:not(.no-highlight).active, 
    .dark .tempus-dominus-widget.light .time-container-minute div:not(.no-highlight).active, 
    .dark .tempus-dominus-widget.light .time-container-second div:not(.no-highlight).active {
        background-color: var(--accent) !important;
        color: var(--white) !important;
        opacity: 1; /* Reset opacity for the active day */
    }

.profile-photo .photo-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,.45);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    opacity: 0;
    transition: opacity .2s ease;
}

.profile-photo:hover .photo-overlay {
    opacity: 1;
}

.category-banner {
    width: 400px;  /* Example Width */
    max-height: 210px; /* Horizontal Rectangle Height */
    object-fit: cover; /* This crops the square to be a wide rectangle */
    object-position: center; 
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}