svg.plot-layout {
    /* background-color: green; */
    font-family: var(--primary-font-family);
}

svg.plot-layout .blackArea {
    fill: black;
    stroke-width: 2px;
    stroke: white;
}

svg.plot-layout .yellowFill {
    fill: yellow;
    stroke-width: 2px;
    stroke: white;
    font-size: 0.8em;

}

svg.plot-layout .redText {
    fill: red;
    font-size: 0.8em;

}

svg.plot-layout .whiteText {
    fill: white;
    font-size: 0.8em;

}

svg.plot-layout .plot {
    stroke-width: 2px;
    stroke: white;
    fill: green;
    cursor: pointer;
}

svg.plot-layout .plot:hover {
    fill: skyblue;
    transition: all 0.2s linear;

}

svg.plot-layout .booked {
    fill: red;

}

svg.plot-layout .matched {
    fill: orange;

}

svg.plot-layout .hold {
    fill: skyblue;

}

svg.plot-layout .plotNumber {

    fill: white;
    font-weight: bolder;
    font-size: 0.8em;
}

.plots-layout-container {
    margin: 0 auto 0 auto;
    width: 99%;
    overflow-x: hidden;
    /* background: white !important; */


}

.plots-layout-container.full-screen {
    left: 0;
    top: 0;
    position: fixed;
    width: 100%;
    height: 100%;
    z-index: 5;
}

svg.digital-plot-layout .plot {
    fill: transparent !important;
    cursor: pointer;

}


.high-z-index {
    z-index: 500;

}

.fixed-things-bg {
    background: #f7ff00;  /* fallback for old browsers */
background: -webkit-linear-gradient(to right, #db36a4, #f7ff00);  /* Chrome 10-25, Safari 5.1-6 */
background: linear-gradient(to right, #db36a4, #f7ff00); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */


}

.project-custom-things-bg{
    background: #ff00cc;  /* fallback for old browsers */
background: -webkit-linear-gradient(to right, #333399, #ff00cc);  /* Chrome 10-25, Safari 5.1-6 */
background: linear-gradient(to right, #333399, #ff00cc); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */


}

.project-custom-things-bg .card-text{
    color: white;
}

.full-layout-box {
    height: calc(80vh - 0px);
    /* min-height: 80vh !important;
    max-height: 80vh !important;
    min-width: 100vw !important;
    max-width: 100vw !important; */
    overflow: hidden !important;
}

.controls-container{
    position: fixed;
    bottom: 20px;
    right: 30px;
    background: lavender;
    padding: 2px;
    border-radius: 5px;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px, rgba(10, 37, 64, 0.35) 0px -2px 6px 0px inset;
}

.top-fixed-project-title {

    /* position: fixed; */
    display: block;


    margin: 0 auto 0 auto;
    width: 100%;
    text-align: left;
    padding-left: 10px;
    padding-top: 4px;
    padding-bottom: 4px;

}

.fixed-reload-btn ,
.all-plots-info-filters
{
    color: black;
    width: 30px;
    height: 30px;
    /* border: 0; */
    margin-left: 10px;
    /* border-radius: 50% !important; */
    font-size: 12px;
}
.fixed-filter-btn,
.fixed-filter-re-center {
    /* position: fixed;
    left: 0; */
    color: black;
    width: 30px;
    height: 30px;
    /* border: 0; */
    margin-left: 10px;
    /* border-radius: 50% !important; */
    font-size: 12px;
    /* border: 0.1px solid black; */
}

.fixed-filter-btn {
    /* top: 120px; */

    /* border: 0; */
    /* border-radius: 0; */
}

.fixed-filter-re-center {
    /* top: 170px; */

    /* border: 0;
    border-radius: 0; */
}

.fixed-zoom-in-btn,
.fixed-zoom-out-btn {

    /* position: fixed;
    right: 0; */
    color: black;
    width: 30px;
    height: 30px;
    /* border: 0; */
    margin-left: 10px;

    /* border-radius: 50% !important; */
    font-size: 12px;
    /* border: 0.1px solid black; */

}
/*
.fixed-zoom-in-btn {
    top: 120px;

}

.fixed-zoom-out-btn {
    top: 170px;

} */


.bg-paper-grid{
    background:
    linear-gradient(-90deg, rgba(0,0,0,.05) 1px, transparent 1px),
    linear-gradient(rgba(0,0,0,.05) 1px, transparent 1px),
    linear-gradient(-90deg, rgba(0, 0, 0, .04) 1px, transparent 1px),
    linear-gradient(rgba(0,0,0,.04) 1px, transparent 1px),
    linear-gradient(transparent 3px, #f2f2f2 3px, #f2f2f2 78px, transparent 78px),
    linear-gradient(-90deg, #aaa 1px, transparent 1px),
    linear-gradient(-90deg, transparent 3px, #f2f2f2 3px, #f2f2f2 78px, transparent 78px),
    linear-gradient(#aaa 1px, transparent 1px),
    #f2f2f2;
background-size:
    4px 4px,
    4px 4px,
    80px 80px,
    80px 80px,
    80px 80px,
    80px 80px,
    80px 80px,
    80px 80px;
}


    /* Styling for the cart list */
    #cart-list {
        list-style-type: none;
        padding: 0;
        margin: 0;
    }

    /* Cart item styling */
    #cart-list li {
        font-size: 16px;
        padding: 10px;
        margin-bottom: 8px;
        background-color: #f9f9f9;
        border-radius: 5px;
        border: 1px solid #eee;
        display: flex;
        justify-content: space-between;
        align-items: center;
        transition: background-color 0.3s ease;
    }

    #cart-list li:hover {
        background-color: #f1f1f1;
    }

    /* Remove button styling */
    #cart-list li button {
        background-color: #ff4d4d;
        color: white;
        border: none;
        padding: 5px 10px;
        font-size: 14px;
        cursor: pointer;
        border-radius: 4px;
        transition: background-color 0.3s ease;
    }

    #cart-list li button:hover {
        background-color: #e60000;
    }
