@font-face {
    font-family: Bariol_Regular;
    src: url('../fonts/Bariol_Regular.otf');
    font-family: Bariol_Bold;
    src: url('../fonts/Bariol_Bold.otf');
    font-family: Bariol_Regular_Italic;
    src: url('../fonts/Bariol_Regular_Italic.otf');
    font-family: Bariol_Serif_Regular;
    src: url('../fonts/Bariol_Serif_Regular.otf');
}





.IntegrationBox {
    border: 1px solid silver;
    border-radius: 10px;
    margin: 15px;
    padding: 5px;
    padding-top: 9px;
    padding-left: 15px;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}
.IntegrationBox h3{
    display:inline-block;
    font-size:30px;
}
    .IntegrationBox button {
        display: inline-block;
        float: right;
        margin-right: 10px;
        margin-top:4px;
        background: #7cb957;
        color:white;
        border:none;
        border-radius:30px;
        font-size:20px;
        padding:5px;
        padding-left:20px;
        padding-right:20px;
    }
.Integrated {
    background: #7cb957;
    border:none;
}
.Integrated h3{
    color:white;
}
.Integrated button {
    background: none !important;
    color: white !important;
}
.Integrated button i {
    font-size: 25px;
}

.Settings_Title{
    font-size:20px !important;
    margin-left:15px;
}


/*===================Menu Editor*/
.PreviewMenu {
    height: 60px;
    background: #efeff9;
    width: 100%;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    border-bottom:2px solid lightgray;
}
.PreviewMenuItem {
    display: inline-block;
    margin:5px;
    margin-top:8px;
    margin-left:20px;
    margin-right:9px;
}
    .PreviewMenuItem p {
        display: inline-block;
        float: left;
        margin-top: 9px;
        color: rgba(117,117,117,.87);
        font-size:14px;
    }
    .PreviewMenuItem button {
        display: inline-block;
        float: left;
        background: none;
        border: none;
    }
    .PreviewMenuItem button i{
        font-size:30px;
    }



.DisplayIconBox {
    height: 42px;
    width: 42px;
    border-radius: 11px;
    text-align: center;
    display: inline-block;
    margin-right: 10px;
}
    .DisplayIconBox i {
        font-size: 25px;
        margin-top: 8px;
    }
.DisplayIconEditBox{
    display:inline-block;
    float:right;
}
    .DisplayIconEditBox button {
        background: none;
        border: none;
        margin-top:10px;
    }
    .DisplayIconEditBox button i{
        font-size:20px;
        color:gray;
    }
.DisplayIconText {
    display: inline-block;
    margin-top:10px;
    vertical-align:top;
}
.DisplayIconArea {
    vertical-align: top;
}



.IconPreviewLarge{
    text-align:center;
}
.IconPreviewLarge .DisplayIconBox{
    height:100px;
    width:100px;
}
    .IconPreviewLarge .DisplayIconBox i{
        font-size:50px;
        margin-top:20px;
    }

.MenuTextArea{
    text-align:center;
}
.MenuTextArea input {
    width: 80%;
    height:40px;
    border:1px solid silver;
    border-radius:5px;
}

.InteractiveMapArea{
    border:1px solid red;
    width:100%;
    height:100vh;
    background:silver;
}

.Zone{
    border:2px solid black;
    resize:both;
    overflow:auto;
}


#Zone_IP{
    position:absolute;
    top:250px;

    width:200px;
    height:50px;
}

.InteractiveMapToolArea{
    position:absolute;
    bottom:0px;
    z-index:1000;
}

















#controls {
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 10;
}

#add-zone-btn, #add-area-btn {
    padding: 10px 15px;
    font-size: 14px;
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}
#add-area-btn {
    background-color: silver;
}

    #add-area-btn:hover,#add-zone-btn:hover {
        background-color: #0056b3;
    }

#map-container {
    position: relative;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    background: #e0e0e0; /* Light gray background */
}

#map {
    width: 2000px;
    height: 2000px;
    background: url('your-map-image.jpg') no-repeat center center;
    background-size: contain;
    transform-origin: center;
    position: relative;
    transform: scale(1);
}

.draggable-box {
    position: absolute;
    width: 150px;
    height: 100px;
    border: 2px solid #007bff;
    background-color: rgba(0, 123, 255, 0.1);
    cursor: grab;
}

    .draggable-box:active {
        cursor: grabbing;
    }

.label {
    position: absolute;
    top: -20px;
    left: 10px;
    background-color: #007bff;
    color: #fff;
    padding: 3px 8px;
    border-radius: 4px;
}

.resize-handle {
    position: absolute;
    width: 10px;
    height: 10px;
    background-color: #007bff;
    bottom: 0;
    right: 0;
    cursor: nwse-resize;
}




.SilverArea {
    border: 2px solid silver;
}
.SilverArea .label{
    background-color:silver;
}
.SilverArea .resize-handle{
    background-color:silver;
}
