/* --- Main Container --- */
.seating-plan-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
    border: 1px solid #ddd;
    padding: 15px;
    border-radius: 5px;
}
.seating-map-wrapper, 
#seating-map-svg {
    /* Critical for mobile panning/zooming */
    touch-action: none; 
    
    /* Optional: Prevent text selection while dragging */
    user-select: none; 
    -webkit-user-select: none;
    
    /* Optional: Ensure the cursor looks like a grab hand */
    cursor: grab;
}

#seating-map-svg.is-panning {
    cursor: grabbing;
}
.seating-map-wrapper {
    flex: 1;
    min-width: 300px;
    min-height: 500px; 
    /* height: 600px; */
    overflow: hidden; 
    position: relative; 
    border: 1px solid #eee;
    background-color: #fcfcfc;
    contain: content;
}

#seating-map-svg {
    width: 100%;
    height: 100%;
    cursor: grab;
    display: block;
    backface-visibility: hidden;
    will-change: transform;
    transform: translateZ(0);
    shape-rendering: optimizeSpeed; 
    text-rendering: optimizeSpeed;
    
}


g {
    shape-rendering: geometricPrecision;
}

#seating-map-svg:active {
    cursor: grabbing;
}

.seating-summary-wrapper {
    flex-basis: 250px;
    min-width: 300px;
    background-color: #ffffff;
    
    /* Card Look */
    border: 1px solid #e2e8f0; /* Subtle slate border */
    border-radius: 12px;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.05), 0 4px 6px -2px rgba(0, 0, 0, 0.025);
    
    padding: 25px;
    /* margin-left: 20px;  */
    
    /* Sticky Positioning: Follows user on scroll */
    position: sticky;
    top: 20px; 
    height: fit-content;
    max-height: calc(100vh - 40px); /* Prevent it being taller than screen */
    display: flex;
    flex-direction: column;
    z-index: 50;
}

/* --- SVG Element Styles --- */
.table-shape {
    fill: #f0f0f0;
    stroke: #aaa;
    stroke-width: 1;
    cursor: pointer;
}
.table-shape:hover {
    stroke: #2271b1;
    stroke-width: 2px;
}

.table-label, .stage-label {
    /* font-size: 14px;fill: #555; */
    font-weight: bold;
    
    text-anchor: middle;
    dominant-baseline: central;
    pointer-events: none; /* Make text non-interactive */
}
.ga-area-label {
    text-anchor: middle;
    dominant-baseline: middle;
    pointer-events: none;
}
.stage-shape {
    fill: #e0e0e0;
    stroke: #999;
}

/* --- Seat Styles --- */
.seat {
    stroke: #555;
    stroke-width: 1;
    /* transition: all 0.2s ease-in-out; */
    transition: transform 0.2s ease-in-out, fill 0.2s ease-in-out;
    transform-origin: center;
    transform-box: fill-box;
    shape-rendering: geometricPrecision !important; 
}

.seat.available {
    fill: #4CAF50; /* Green */
    cursor: pointer;
}
/* .seat.available:hover {
    fill: #66BB6A;
    transform: scale(1.2);
    
} */

.seat.selected {
    fill: #FFC107; /* Amber */
    stroke: #E65100;
    stroke-width: 2px;
}

.seat.in-progress {
    fill: #ff9800; /* Orange */
    cursor: not-allowed;
}

.seat.booked {
    fill: #BDBDBD; /* Grey */
    cursor: not-allowed;
}

.seat.unavailable {
    fill: #F44336; /* Red */
    cursor: not-allowed;
}

/* --- Summary & Controls --- */
.seating-summary-wrapper h3 {
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #1e293b; /* Dark Slate */
    margin: 0 0 20px 0;
    padding-bottom: 15px;
    border-bottom: 2px solid #f1f5f9;
}
#selected-seats-list {
    list-style: none;
    flex-grow: 1; /* Takes up available space */
    overflow-y: auto; /* Scroll if too many seats */
    max-height: 40vh; /* Limit height */
    margin: 0 0 20px 0;
    padding: 8px; /* Space for scrollbar to sit nicely */
    
    /* Firefox: High contrast scrollbar */
    scrollbar-width: thin;
    scrollbar-color: #94a3b8 #f1f5f9; /* Thumb Color / Track Color */
}

/* Webkit (Chrome/Safari/Edge) - Force Visible Scrollbar */
#selected-seats-list::-webkit-scrollbar {
    width: 8px; /* Width of the scrollbar */
    background-color: #f1f5f9; /* Track background color */
    border-radius: 4px;
}

#selected-seats-list::-webkit-scrollbar-track {
    background-color: #f1f5f9; /* Explicit track color */
    border-radius: 4px;
}

#selected-seats-list::-webkit-scrollbar-thumb {
    background-color: #94a3b8; /* Visible Grey Thumb */
    border-radius: 4px;
    border: 2px solid #f1f5f9; /* Creates a padding effect around the thumb */
}

#selected-seats-list::-webkit-scrollbar-thumb:hover {
    background-color: #64748b; /* Darker on hover */
}
#selected-seats-list li {
    background: #f9f9f9;
    padding: 5px 8px;
    border-radius: 3px;
    margin-bottom: 5px;
}
.summary-total {
    background-color: #f1f5f9; /* Light contrast bg */
    padding: 15px;
    border-radius: 8px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0 0 20px 0;
    border: 1px solid #e2e8f0;
}

.summary-total strong {
    font-weight: 600;
    color: #64748b;
    font-size: 14px;
    text-transform: uppercase;
}

#total-price {
    font-size: 20px;
    font-weight: 800;
    color: #0f172a; /* Almost Black */
}

#add-to-cart-btn {
    width: 100%;
    padding: 15px;
    font-size: 16px;
    font-weight: 700;
    border-radius: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    border: none;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.1s ease, box-shadow 0.2s ease, background-color 0.2s;
}

#add-to-cart-btn:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

#add-to-cart-btn:active:not(:disabled) {
    transform: translateY(0);
}

#add-to-cart-btn:disabled {
    background-color: #cbd5e1 !important;
    color: #94a3b8 !important;
    box-shadow: none;
    cursor: not-allowed;
}

.error-message {
    color: #d32f2f;
    font-size: 0.9em;
    min-height: 20px;
    margin-bottom: 10px;
}

/* === NEW LEGEND STYLES === */
.seating-legend {
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px dashed #e2e8f0;
}
.seating-legend h4 {
    font-size: 12px;
    text-transform: uppercase;
    color: #94a3b8;
    margin-bottom: 10px;
}

.legend-item {
    font-size: 13px;
    color: #64748b;
    margin-bottom: 8px;
}
.legend-color {
    display: inline-block;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    margin-right: 8px;
    border: 1px solid #757575;
}

/* === END NEW LEGEND STYLES === */
/* Make the whole table clickable */
.whole-table-booking .table-shape {
    cursor: pointer;
}
.whole-table-booking .table-shape:hover {
    stroke: #2271b1;
    stroke-width: 2px;
}

/* Make individual seats on these tables NOT clickable */
.whole-table-seat {
    pointer-events: none;
}

/* ===  Frontend Zoom Controls Styles === */
.les-view-controls {
    /* position: absolute;
    bottom: 10px;
    right: 10px;
    z-index: 10;
    display: flex;
    gap: 5px; */
    position: absolute;
    top: 10px;
    right: 10px;
    display: flex;
    align-items: center;
    gap: 8px; /* Space between filter and buttons */
    background: rgba(255, 255, 255, 0.9);
    padding: 5px;
    border-radius: 6px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    z-index: 100;
}
.les-filter-wrapper {
    position: relative;
    margin: 0;
}

.les-form-control {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-color: #fff;
    border: 1px solid #ccc;
    border-radius: 4px;
    padding: 0 30px 0 10px; /* Right padding for arrow */
    font-size: 13px;
    color: #333;
    cursor: pointer;
    height: 32px; /* Matches standard icon button height */
    line-height: 30px;
    font-family: inherit;
    min-width: 160px;
    
    /* Custom Down Arrow */
    background-image: url('data:image/svg+xml;charset=US-ASCII,%3Csvg%20width%3D%2212%22%20height%3D%2212%22%20viewBox%3D%220%200%2020%2020%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22M5%208l5%205%205-5z%22%20fill%3D%22%23555%22%2F%3E%3C%2Fsvg%3E');
    background-repeat: no-repeat;
    background-position: right 8px center;
    transition: border-color 0.2s ease;
}

.les-form-control:focus {
    outline: none;
    border-color: #2271b1;
    box-shadow: 0 0 0 1px #2271b1;
}

.les-form-control:hover {
    border-color: #999;
}
.les-zoom-btn {
    /* background: #fff !important;
    border: 1px solid #ccc !important;
    border-radius: 50% !important;
    width: 36px !important;
    height: 36px !important;
    padding: 0 !important;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    cursor: pointer;
    line-height: 34px !important; */
    width: 32px;
    height: 32px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border: 1px solid #ccc;
    border-radius: 4px;
    cursor: pointer;
    color: #444;
    transition: all 0.2s;
}
.les-zoom-btn:hover {
    background: #f0f0f1;
    border-color: #999;
    color: #2271b1;
}
.les-zoom-btn .dashicons {
    font-size: 18px;
    width: 18px;
    height: 18px;
    /* vertical-align: middle; */
}
/* ======================================= */
/* --- Responsiveness --- */
@media (max-width: 768px) {
    /* 1. Main Container adjustment */
    .seating-plan-container {
        flex-direction: column;
        padding: 0;
        border: none;
        padding-bottom: 140px; /* Add enough space so map isn't covered by the floating bar */
    }

    .seating-map-wrapper {
        min-height: 60vh; 
        border: none;
        border-bottom: 1px solid #eee;
    }

    /* 2. Sticky Bottom Bar Container */
    .seating-summary-wrapper {
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        background-color: #ffffff;
        border-top-left-radius: 15px; /* Rounded top corners for the sheet */
        border-top-right-radius: 15px;
        box-shadow: 0 -5px 20px rgba(0,0,0,0.15); /* Stronger shadow for depth */
        z-index: 10000;
        padding: 0;
        display: flex;
        flex-direction: column;
        transition: transform 0.3s cubic-bezier(0.25, 0.1, 0.25, 1);
        max-height: 85vh; 
        box-sizing: border-box;
        
        /* Account for iPhone Home Indicator area */
        padding-bottom: env(safe-area-inset-bottom, 20px); 
    }

    /* 3. Toggle Handle (The small gray line) */
    .les-mobile-toggle {
        display: flex;
        flex-direction: column; /* Stack the grey line and text vertically */
        justify-content: center;
        align-items: center;
        padding: 12px 0 8px 0; /* Top/Bottom padding */
        cursor: pointer;
        width: 100%;
        gap: 6px; /* Space between the grey line and the text */
    }

    /* The Grey Handle Bar */
    .les-mobile-toggle::before {
        content: '';
        display: block;
        width: 40px;
        height: 4px;
        background: #e2e8f0; /* Soft Grey */
        border-radius: 10px;
    }

    /* The Text Label (Default State: Show) */
    .les-mobile-toggle::after {
        content: 'Show Details'; 
        font-size: 11px;
        font-weight: 600;
        text-transform: uppercase;
        color: #94a3b8; /* Text Grey */
        letter-spacing: 0.5px;
    }

    /* 4. Total Price (Centered above button) */
    .summary-total {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 10px;
        padding: 5px 15px 10px 15px;
        margin: 0;
        font-size: 1.1em;
        color: #333;
    }

    /* 5. PROFESSIONAL BUTTON STYLES */
    #add-to-cart-btn {
        display: block;
        width: calc(100% - 40px); /* Full width minus margins */
        margin: 0 auto 10px auto; /* Center horizontally */
        padding: 14px 20px;
        
        /* Pill Shape */
        border-radius: 50px; 
        border: none;
        
        /* Typography */
        font-size: 16px;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        
        /* Shadow & Depth */
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
        transition: transform 0.1s ease, background-color 0.2s, box-shadow 0.2s;
    }

    /* Active Press Effect (User feels the click) */
    #add-to-cart-btn:active {
        transform: scale(0.96);
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    }

    /* Disabled State */
    #add-to-cart-btn:disabled {
        background-color: #e0e0e0 !important;
        color: #a0a0a0 !important;
        box-shadow: none;
        transform: none;
        cursor: default;
    }

    /* 6. List and Legend (Hidden by default) */
    .seating-summary-wrapper h3, 
    .seating-legend {
        display: none; 
    }
    
    /* When Expanded */
    .seating-summary-wrapper.expanded .seating-legend {
        display: block;
        padding: 15px;
        background: #f9f9f9;
    }
    
    #selected-seats-list {
        display: none;
        margin: 0;
        padding: 0 15px 15px 15px;
        background: #fff;
        max-height: 40vh; /* Allow list to take up more space when open */
        overflow-y: auto;
    }
    
    .seating-summary-wrapper.expanded #selected-seats-list {
        display: block;
    }

    .seating-summary-wrapper.expanded .les-mobile-toggle::after {
        content: 'Hide Details';
        color: #64748b; /* Slightly darker when open */
    }
}

/* Hide the toggle on desktop */
@media (min-width: 769px) {
    .les-mobile-toggle { display: none; }
}

/* ============================= */
/* === Professional Tooltip ==== */
/* ============================= */

/* #les-seat-tooltip {
    position: absolute;
    background-color: rgba(33, 33, 33, 0.95); 
    color: #fff;
    padding: 10px 15px;
    border-radius: 6px;
    font-size: 14px;
    line-height: 1.5;
    z-index: 1001; 
    pointer-events: none;
    white-space: nowrap;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    transition: opacity 0.15s ease-in-out, transform 0.15s ease-in-out;
    transform: translateY(5px); 
    opacity: 0;
}


#les-seat-tooltip::after {
    content: '';
    position: absolute;
    bottom: 100%; 
    left: 50%;
    transform: translateX(-50%);
    border-width: 6px;
    border-style: solid;
    border-color: transparent transparent rgba(33, 33, 33, 0.95) transparent;
}


.les-tooltip-content .tooltip-title {
    font-weight: bold;
    font-size: 1.1em;
    margin-bottom: 8px;
    padding-bottom: 5px;
    border-bottom: 1px solid #555;
    color: #FFC107; 
}

.les-tooltip-content .tooltip-row {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.les-tooltip-content .tooltip-label {
    color: #ccc;
}

.les-tooltip-content .tooltip-value {
    font-weight: bold;
} */

/* =================================== */
/* === Professional Tooltip (Light) ==== */
/* =================================== */

#les-seat-tooltip {
    position: absolute;
    /* NEW: A professional dark slate background for the content area */
    background-color: #334155; 
    color: #333; /* Default color, will be overridden */
    padding: 0; 
    border-radius: 8px;
    font-size: 14px;
    line-height: 1.5;
    z-index: 1001;
    pointer-events: none;
    white-space: nowrap;
    /* MODIFIED: Border color updated for the dark theme */
    border: 1px solid #475569; 
    /* MODIFIED: Shadow adjusted for a dark background */
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2); 
    transition: opacity 0.2s ease-out, transform 0.2s ease-out;
    transform: translateY(4px);
    opacity: 0;
    overflow: hidden; 
}

/* The arrow still points to the white header, so this remains unchanged */
#les-seat-tooltip::after {
    content: '';
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    border-width: 6px;
    border-style: solid;
    border-color: transparent transparent #ffffff transparent; 
    filter: drop-shadow(0 -1px 1px rgba(0, 0, 0, 0.05));
}

/* The header styles remain the same (white background, dark text) */
.les-tooltip-content .tooltip-title {
    background-color: #ffffff; 
    font-weight: 600;
    font-size: 1.05em;
    margin: 0; 
    padding: 12px 16px; 
    border-bottom: 1px solid #e2e8f0;
    color: #1a202c;
}

/* The row layout stays the same */
.les-tooltip-content .tooltip-row {
    display: flex;
    justify-content: space-between;
    gap: 25px;
    padding: 4px 16px;
}

.les-tooltip-content .tooltip-row:first-of-type {
    padding-top: 12px;
}
.les-tooltip-content .tooltip-row:last-of-type {
    padding-bottom: 12px;
}

/* NEW: White/light-gray text colors for readability on the dark background */
.les-tooltip-content .tooltip-label {
    color: #cbd5e1; /* A softer, light gray for the label */
}
.les-tooltip-content .tooltip-status {
    padding:4px 16px;
}
.les-tooltip-content .tooltip-value , .les-tooltip-content .tooltip-status{
    font-weight: 500;
    color: #f1f5f9; /* A brighter, off-white for the value */
}

/* ===================================== */
/* === Professional Tooltip (Refined Dark) ==== */
/* ===================================== */

/* #les-seat-tooltip {
    position: absolute;
    background-color: #2d3748; 
    color: #e2e8f0; 
    padding: 12px 16px;
    border-radius: 8px;
    font-size: 14px;
    line-height: 1.5;
    z-index: 1001;
    pointer-events: none;
    white-space: nowrap;
    border: 1px solid #4a5568; 
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2); 
    transition: opacity 0.2s ease-out, transform 0.2s ease-out;
    transform: translateY(4px);
    opacity: 0;
}


#les-seat-tooltip::after {
    content: '';
    position: absolute;
    bottom: 100%; 
    left: 50%;
    transform: translateX(-50%);
    border-width: 6px;
    border-style: solid;
    border-color: transparent transparent #2d3748 transparent; 
}


.les-tooltip-content .tooltip-title {
    font-weight: 600;
    font-size: 1.05em;
    margin-bottom: 8px;
    padding-bottom: 6px;
    border-bottom: 1px solid #4a5568; 
    color: #ffffff; 
}

.les-tooltip-content .tooltip-row {
    display: flex;
    justify-content: space-between;
    gap: 25px;
}

.les-tooltip-content .tooltip-label {
    color: #a0aec0; 
}

.les-tooltip-content .tooltip-value {
    font-weight: 500;
    color: #e2e8f0; 
} */
.les-license-error {
    padding: 20px;
    text-align: center;
    background-color: #fff8f8;
    border: 1px solid #d9a0a0;
    border-radius: 4px;
}

.les-license-error strong {
    font-size: 1.2em;
    color: #c00;
}





/* Hide detailed elements (seats, tables, text) when zoomed out */
#seating-map-svg.zoom-level-overview .seat,
#seating-map-svg.zoom-level-overview .seat-label,
#seating-map-svg.zoom-level-overview .table-shape,
#seating-map-svg.zoom-level-overview .table-label,
#seating-map-svg.zoom-level-overview .ga-area-shape,
#seating-map-svg.zoom-level-overview .ga-area-label,
#seating-map-svg.zoom-level-overview .static-text-element {
    display: none !important;
}

/* SECTION BOUNDARY - OVERVIEW (Clickable Card) */
#seating-map-svg.zoom-level-overview .section-boundary-guide {
    /* Use explicit fill rules to ensure the color shows */
    fill-opacity: 0.55 !important; 
    stroke: #999;
    stroke-width: 1px;
    cursor: zoom-in; /* Indicates it is clickable */
    pointer-events: auto !important; /* Force clickable */
    transition: transform 0.2s, stroke-width 0.2s;
}

/* Hover Effect in Overview */
#seating-map-svg.zoom-level-overview .section-boundary-guide:hover {
    fill-opacity: 0.85 !important;
    stroke: #2271b1;
    stroke-width: 4px;
    /* opacity: 0.9; */
}

/* SECTION LABEL - OVERVIEW */
#seating-map-svg.zoom-level-overview .section-label {
    opacity: 1 !important;
    font-size: 24px;
    font-weight: bold;
    fill: #222;
    pointer-events: none; /* Text shouldn't block the click on the box */
}

/* --- 2. DETAIL MODE (Zoomed In) --- */

/* SECTION BOUNDARY - DETAIL (Invisible & Non-blocking) */
#seating-map-svg.zoom-level-detail .section-boundary-guide {
    fill: none !important;      /* Remove background color */
    stroke: #666666;            
    stroke-width: 2px;
    stroke-dasharray: 8, 4;
    pointer-events: none !important; /* CRITICAL: Allows clicking seats "under" this box */
}

/* SECTION LABEL - DETAIL (Ghosted) */
#seating-map-svg.zoom-level-detail .section-label {
    opacity: 0.1 !important;
    pointer-events: none;
}

/* Ensure seats are visible in detail mode */
#seating-map-svg.zoom-level-detail .seat {
    display: inline;
}

#seating-map-svg.zoom-level-overview .section-seats-layer {
    display: none !important;
}
/* --- SECTION PREVIEW LAYER (The "Glimpse" inside Sections) --- */

/* 1. Make the preview layer visible but subtle */
.section-preview-layer {
    display: inline !important; /* Ensure it is not hidden by other rules */
    opacity: 0.8; /* Slight transparency for "preview" feel */
    pointer-events: none; /* Non-interactive */
}

/* 2. Style the shapes inside the preview */
.section-preview-layer rect,
.section-preview-layer circle,
.section-preview-layer polygon,
.section-preview-layer line {
    /* Use the element's fill color if defined inline, otherwise fallback */
    /* Remove the forcing of stroke/fill from previous CSS if it overrides inline styles */
    /* stroke: #888; */
    stroke-width: 2px;  
    vector-effect: non-scaling-stroke; /* Keep lines thin even when scaled */
}
.section-preview-layer path {
    stroke-width: 2px;
    vector-effect: non-scaling-stroke;
    fill: none !important; /* CRITICAL: Prevents curved rows from looking like filled shapes */
}
/* 3. Specifically hide the "Seat Block Boundary" box in preview if it looks bad */
/* This is the rectangle around a group of seats */
.section-preview-layer .seat-block-boundary {
    stroke: none !important; /* Hide the border */
    fill: none !important;   /* Hide the background */
}

/* 4. Ensure Text in preview is visible but small */
.section-preview-layer text {
    font-size: 10px !important; /* Force smaller font for overview */
    fill: #444 !important;
    font-weight: normal;
}
/* --- Summary List Items --- */
#selected-seats-list li, 
.les-summary-item, 
.ga-summary-item {
    background-color: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 6px;
    padding: 10px 12px;
    margin-bottom: 8px;
    font-size: 14px;
    color: #334155;
    transition: border-color 0.2s;
}

#selected-seats-list li:hover {
    border-color: #cbd5e1;
}

/* Specific fix for GA layout */
.ga-summary-item {
    flex-wrap: wrap; /* Allow wrapping on very small screens */
}
.ga-summary-item .ga-info {
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 1;
}

/* --- The Remove (Cross) Button --- */
.les-remove-item-btn {
    background: transparent;
    border: none;
    color: #999;
    font-size: 20px;
    font-weight: bold;
    line-height: 1;
    cursor: pointer;
    padding: 0 0 0 10px;
    margin-left: 10px;
    transition: color 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.les-remove-item-btn:hover {
    color: #d32f2f; /* Red on hover */
    background: transparent; /* Override default button styles */
}

.les-remove-item-btn:focus {
    outline: none;
    color: #d32f2f;
}