
    .map-main {
        position: relative;
        display: flex;
        flex-direction: row;
        align-items: flex-start;
        margin-top: 24px;
        gap: 8px;
        border-radius: 4px;
        border: 1px solid darkblue;
        box-shadow: 0 10px 16px 0 rgba(0,0,0,0.2), 0 6px 20px 0 rgba(0,0,0,0.19);
        font-size: 14px;
    }
    .map-body {
        width: 60%;
        height: 550px;
    }
    .map-search-box {
        width: 20%;
        border-radius: 8px;
        box-shadow: 0 10px 16px 0 rgba(63, 63, 63, 0.2), 0 6px 20px 0 rgba(58, 58, 58, 0.19);
        min-height: 589px;
        border-top-left-radius: 8px;
        border-bottom-left-radius: 8px;
    }
    .map-info-box {
        width: 20%;
        display: flex;
        flex-direction: column;
        gap: 18px;
    }

    .mobile {
        display: none;
    }
    .desktop {
        display: block;
    }

    #my-tree {
        max-height: 550px;
        margin-left: 8px;
        overflow-y: scroll;
    }
    #map-info-box-name-id {
        margin-top: 12px;
        font-weight: bold;
        text-align: center;
    }
    @media (max-width: 768px) {
        .map-main {
            flex-direction: column;
        }
        #my-tree {
            margin-left: 12px;
        }
        .map-body {
            width: 100%;
            height: 300px;
        }
        .map-search-box {
            width: 100%;
            min-height: auto;
        }
        .map-info-box {
            width: 100%;
        }
        .mobile {
            display: flex;
        }
        .desktop {
            display: none;
        }
    }

    *::selection {
        /*color: white;
        background: tomato;*/
    }
    .form-control {
        transition: .25s border ease-in-out;
        border-radius: 0 !important;
        outline: none !important;
        box-shadow: none !important;
        background: transparent;
        color: black;
        border: 0;
        border-bottom: 2px solid #444;
        font-size: 20px;
        width: 90%;
        margin: auto;
        display: block;
        margin-top: 4px;
        margin-bottom: 5px;
    }
      
    .form-control:focus {
        border-bottom-color: #CC2C21;
    }
    #my-search {
        height: 42px;
        box-shadow: 0 10px 16px 0 rgba(63, 63, 63, 0.2), 0 6px 20px 0 rgba(58, 58, 58, 0.19)
    }
    #my-search:focus+.floater:before,
    #my-search:not(:placeholder-shown)+.floater:before {
        position: absolute;
        top: -20px;
        font-size: 14px;
        color: #FFF;
        height: 42px;
    }
    /*p{color:white}*/
    #my-search+.floater:before,
    #my-search:focus+.floater:before {
        content: "Country";
    }

    #my-tree::-webkit-scrollbar {
        width: 12px;               /* width of the entire scrollbar */
    }
    
    #my-tree::-webkit-scrollbar-track {
        background: lightgray;        /* color of the tracking area */
        border-radius: 16px;  
    }
    
    #my-tree::-webkit-scrollbar-thumb {
        background-color: gray;    /* color of the scroll thumb */
        border-radius: 16px;       /* roundness of the scroll thumb */
        border: 3px solid lightgray;  /* creates padding around scroll thumb */
    }

    .jvectormap-zoomin, .jvectormap-zoomout {
        display: flex;
        justify-content: center;
        align-items: center;
    }
    .data-table {
        margin: auto;
        box-shadow: 0 10px 16px 0 rgba(63, 63, 63, 0.2), 0 6px 20px 0 rgba(58, 58, 58, 0.19);
    }
    .data-table {
        font-family: Arial, Helvetica, sans-serif;
        border-collapse: collapse;
        width: 100%;
    }
      
    .data-table td, .data-table th {
        border: 1px solid #ddd;
        padding: 6px;
    }
      
    .data-table tr:nth-child(even){background-color: #f2f2f2;}
      
    .data-table tr:hover {background-color: #ddd;}
      
    .data-table th {
        padding-top: 12px;
        padding-bottom: 12px;
        text-align: center;
        background-color: orange;
        color: white;
    }
    #selectoption-form {
        position: absolute;
        display: flex;
        justify-content: center;
        gap: 4px;
        bottom: 8px;
        left: 0;
        right: 0;
        margin: 0 auto;
    }
    .jvectormap-container {
        margin-top: 4px;
    }