   .booknow-btn:diable {
        opacity: 0.5;
        /* Make the button semi-transparent */
        pointer-events: none;
        /* Disable pointer events */
        cursor: not-allowed;
        /* Change cursor to not-allowed */
    }

    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box
    }

    html,
    body {
        width: 100%;
        height: 100%;
        background: #eaeaea;
        font-family: Arial, Helvetica, sans-serif;
    }

    .open-space {
        fill: url(#greenDots);
        stroke: #000;
        stroke-width: 1;
    }


    #greenDots circle {
        fill: #2ecc71;
    }



    .wrapper {
        position: relative;
        width: 100%;

        display: flex;
        align-items: center;
        justify-content: center;
        padding: 20px 0;
    }

    svg {
        width: 90vw;
        height: auto;
        background: #fff;
        border: 1px solid #000;
    }

    /* PLOT BASE */
    .plot {
        stroke: #222121;
        stroke-width: 1.2;
        vector-effect: non-scaling-stroke;
        cursor: pointer;
    }

    /* STATUS COLORS */

    .plot.available {
        fill: #28a745;
    }

    .plot.pending,
    .plot.pending,
    .plot.waiting {
        fill: #ffc107;
    }

    .plot.booked {
        fill: #dc3545;
    }

    /* LABEL */
    .plot-label {

        font-size: 10px;
        font-weight: bold;
        fill: #fff;
        text-anchor: middle;
        dominant-baseline: middle;
        pointer-events: none;

        stroke-width: .6px;
        paint-order: stroke fill;
    }





    /* popup */

    #popup {
        position: absolute;
        inset: 0;
        display: none;
        background: rgba(0, 0, 0, 0.45);
        align-items: center;
        justify-content: center;
        z-index: 999;
        inset: 0;

    }

    #popupBox {
        position: relative;
        background: #eeeeee;
        padding: 15px 30px 10px 30px;
        width: 280px;
        border-radius: 18px;
        border: 3px solid #7b2cbf;
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
        animation: popupFade 0.3s ease;
        font-family: "Segoe UI", Arial, sans-serif;
    }


    .plot-title {
        font-size: 25px;
        font-weight: 700;
        margin-bottom: 15px;
        color: #1e2a2a;
    }


    #popupBox p {
        font-size: 15px;
        margin-bottom: 4px;
        color: #000;
    }


    .plot-status {
        font-weight: 600;
        margin-bottom: 20px;
    }


    .choose-category {
        margin-top: 12px;
        margin-bottom: 12px;
        padding-left: 12px;
        border-left: 2px solid #ff3c00;
        font-size: 20px;
        font-weight: 700;
    }


    .radio-group label {
        display: block;
        margin-bottom: 4px;
        font-size: 16px;
    }


    .book-btn {
        display: block;
        text-align: center;
        width: 100%;
        margin-top: 15px;
        padding: 4px;
        background: linear-gradient(to right, #a855f7, #c084fc);
        color: #fff;
        border-radius: 8px;
        font-size: 17px;
        font-weight: 600;
        text-decoration: none;
    }

    .book-btn:hover {
        opacity: 0.95;
    }







    @keyframes popupFade {
        from {
            opacity: 0;
            transform: scale(0.92);
        }

        to {
            opacity: 1;
            transform: scale(1);
        }
    }


    .close-icon {
        position: absolute;
        top: 12px;
        right: 15px;
        font-size: 18px;
        cursor: pointer;
    }


    @keyframes popupFade {
        from {
            opacity: 0;
            transform: scale(0.9);
        }

        to {
            opacity: 1;
            transform: scale(1);
        }
    }

    /* Close icon */
    .close-icon {
        position: absolute;
        top: 10px;
        right: 15px;
        font-size: 20px;
        cursor: pointer;
        font-weight: bold;
    }




    /* checbox layout*/

    .filter-option-box1 {
        position: absolute;
        top: 40px;
        left: 50%;
        transform: translateX(-50%);

        padding: 12px 25px;
        border-radius: 14px;
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
        z-index: 10;
        font-size: 14px;
        display: flex;
        align-items: center;
        gap: 30px;
    }


    .legend-item {
        display: flex;
        align-items: center;
        gap: 8px;
    }


    .color-box {
        width: 16px;
        height: 16px;
        border-radius: 3px;
    }

    /* Status Colors */
    .available-box {
        background-color: #28a745;
    }

    .waiting-box {
        background-color: #ffc107;
    }

    .booked-box {
        background-color: #dc3545;
    }

    /* Label Colors */
    .available-label {
        color: #28a745;
        font-weight: 600;
    }

    .waiting-label {
        color: #ffc107;
        font-weight: 600;
    }

    .booked-label {
        color: #dc3545;
        font-weight: 600;
    }

    .total-box {
        background-color: #6f42c1;
    }


    .total-label {
        color: #6f42c1;
        font-weight: 600;
    }




    @media (max-width: 768px) {

        .map-wrapper {
            padding-top: 0;
            padding-left: 15px;
            padding-right: 15px;
        }

        .filter-option-box1 {
            position: relative;
            top: auto;
            left: auto;
            transform: none;

            width: 100%;
            margin: 12px 0 15px 0;
            padding: 14px;

            flex-wrap: wrap;
            justify-content: center;
            gap: 16px;

            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
        }

        #layout {
            margin-top: 10px;
        }
    }




    @media (max-width: 480px) {

        .filter-option-box1 {
            /*flex-direction: column;*/
            align-items: center;
            gap: 12px;
            padding: 12px;
        }

        #layout {
            margin-top: 8px;
        }
    }




    @media (max-width: 360px) {

        .filter-option-box1 {
            gap: 8px;
            padding: 10px;
        }

        .legend-item {
            font-size: 13px;
        }
    }

    .map {
        background: #fff;
    }

    .tick-list {
        list-style: none;
        padding-left: 0;
    }

    .tick-list li {
        list-style: none !important;
        position: relative;
        padding-left: 28px;
        margin-bottom: 10px;
    }

    .tick-list li::before {
        content: "\f14a";
        font-family: "Font Awesome 5 Free";
        font-weight: 900;
        position: absolute;
        left: 0;
        top: 2px;
        color: #FF5A3C;
        /* green */
    }