.wpmap-container #wpmap-map {
    width: 100%;
    height: 625px;
    background: white;
    margin: 0px auto;
}

.wpmap-container .info {
    position: absolute;
    padding: 5px 10px;
    background: white;
    border-radius: 5px;
    box-shadow: 0 0 5px rgba(0,0,0,.5);
    display: none;
    pointer-events: none;
    font-size: 14px;
    z-index: 1000;
}

.jqvmap-label {
    position: absolute;
    display: none;
    border-radius: 3px;
    background: white;
    color: black;
    box-shadow: 0 0 5px rgba(0,0,0,.25);
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    padding: 3px 7px;
    pointer-events: none;
}

.wpmap-container .jqvmap-region:hover {
    stroke: black !important;
    stroke-width: 1.5px !important;
}

.wpmap-container .menu-button,
.wpmap-container .second-menu-button {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #F27026;
    cursor: pointer;
    background: white;
    border-radius: 5px;
    border: 1px solid #F27026; /* you had both border:2px and border:1px, keeping 1px */
    padding: 2px 7px;
    font-size: 15px;
    height: 15px;
    z-index: 100;
    box-sizing: content-box;
}

.wpmap-container .menu-button {
    position: relative;
    top: 0;
    left: 0;
    width: 55px;
}

.wpmap-container .second-menu-button {
    position: relative;
    top: 150px;
    left: 0;
    width: 55px;
}

.wpmap-container .info-button:hover,
.wpmap-container .menu-button:hover,
.wpmap-container .second-menu-button:hover,
.wpmap-container .fa-down-left-and-up-right-to-center:hover {
    background: #F27026;
    color: white;
}

.wpmap-container .fa-up-right-and-down-left-from-center {
    font-size: 12px;
}

.wpmap-container .expand-icon {
    font-size: 14px;
    margin-left: 8px;
}

/* Popup Menu */
.wpmap-container .popup-menu {
    display: none;
    position: relative;
    /*top: 62px;*/
	top: 0px;
    left: 0px;
    width: 210px;
    background: white;
    border: 1px solid #ddd;
    box-shadow: 0 2px 10px rgba(0, 0, 0, .2);
    border-radius: 5px;
    z-index: 1000;
}

.wpmap-container .menu-section {
    font-weight: bold;
    padding: 5px;
    border-bottom: 1px solid #eee;
    background: #eee;
    display: flex;
    justify-content: space-between;
    cursor: pointer;
}

.wpmap-container .fa-down-left-and-up-right-to-center {
    border: 1px solid #F27026;
    color: #F27026;
    max-height: 12px;
    padding: 3px;
    border-radius: 3px;
    font-size: 12px;
    cursor: pointer;
		box-sizing: content-box;
}

.wpmap-container .menu-item {
    padding: 5px;
    cursor: pointer;
    font-size: 14px;
    color: #444;
}

.wpmap-container .menu-item:hover {
    background: #f0f0f0;
}

.wpmap-container .submenu {
    display: none;
    padding: 5px;
    background: white;
    cursor: pointer;
    box-shadow: inset 0 0 0 5px #f8f8f8;
}

.wpmap-container .selected-item {
    text-decoration: none;
    color: #F27026;
}

/* Expand icon for the popup */
.wpmap-container .popup-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    border-bottom: 1px solid #ddd;
    font-weight: bold;
    background: white;
}

.wpmap-container .popup-expand-icon {
    font-size: 14px;
    cursor: pointer;
    padding: 2px;
    border: 1px solid #4A90E2;
    border-radius: 3px;
    color: #4A90E2;
}

.wpmap-container .popup-expand-icon:hover {
    background: #f0f8ff;
}

.wpmap-container .info-box {
    border: 1px solid #ccc;
    padding: 15px;
    max-width: 100%;
    background: white;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    width: 650px;
    position: absolute;
    top: 320px;

    /* Instead of fixed 190px, make it responsive */
    left: clamp(30px, 10vw, 190px);

    z-index: 10;
}

.wpmap-container .info-content {
    flex: 1;
}

.wpmap-container .info-title {
    color: #F27026;
    margin-bottom: 5px;
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    font-weight: 400;
}

.wpmap-container .info-text {
    font-size: 14px;
    color: #333;
    margin-bottom: 10px;
    font-weight: 300;
    font-family: 'Montserrat', sans-serif;
}

.wpmap-container .info-disclaimer {
    font-size: 12px;
    color: #bbb;
    margin-top: 10px;
}

.wpmap-container p, 
.wpmap-container ul {
    list-style-type: none;
    width: 150px;
    margin: auto;
    text-align: left;
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    margin-top: 10px;
}

.wpmap-container span {
    margin-right: 10px;
}

.wpmap-container #copy-included, 
.wpmap-container #copy-excluded {
    cursor: pointer;
    width: 40px;
    text-align: left;
}

.wpmap-container ul {
    font-weight: 200;
}

.wpmap-container #included, 
.wpmap-container #excluded {
    width: 49%;
    text-align: center;
    display: inline-block;
    vertical-align: top;
}

.wpmap-container .info-actions {
    display: flex;
    align-items: center;
    gap: 8px;
}

.wpmap-container .info-button {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3px;
    border: 1px solid #F27026;
    color: #F27026;
    background: white;
    font-size: 12px;
    font-weight: 500;
    cursor: pointer;
    border-radius: 3px;
}

.wpmap-container .expand-icon {
    font-size: 16px;
    color: #4A90E2;
    border: 1px solid #4A90E2;
    padding: 4px;
    border-radius: 3px;
    cursor: pointer;
}

.wpmap-container .expand-icon:hover {
    background: #f0f8ff;
}

.wpmap-container .notification-block {
    width: 100%;
    height: 20px;
    text-align: center;
    color: green;
    margin-top: 10px;
}

.wpmap-container #notification {
    display: none;
}

.wpmap-container .copied {
    color: #28a745 !important;
}

@media (max-width: 767px) {
    .wpmap-container #wpmap-map {
        max-width: 90%;
		height: 325px;
    }

    .wpmap-container .info-box {
        max-width: 75%;
        top: 420px;
    }

    .wpmap-container .menu-button,
    .wpmap-container .popup-menu,
    .wpmap-container .info-box {
        left: 30px;
    }
    
    .wpmap-container .second-menu-button {
        top: 250px;
        left: 40px;
    }
    
}

.export-preview {
    display: none;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 99999;
    background: rgba(0,0,0,.3);
}

.ep-box {
    width: 90%;
    max-width: 500px;
    padding: 13px 20px 20px;
    margin: 0 auto;
    background: #fff;
    box-shadow: 0 0 25px rgba(0,0,0,.15);
}

.ep-title {
    margin-bottom: 5px;
    font-weight: bold;
    text-transform: capitalize;
}

.ep-box textarea {
    display: block;
    padding: 7px 10px;
    width: 100%;
    height: 200px;
    max-height: 80vh;
    font-size: 80%;
    line-height: 1.4;
}