 .container-map {
      margin: 0;
      height: 100vh;
      font-family: Arial, sans-serif;
      color: #fff;
      position: relative;
      margin-bottom: 30px;
    }

    /* Left panel styles */
    .left-panel {
        position: absolute;
        top: 0;
        left: 150px;
        /* width: 16%; */
        /* height: 69%; */
        background: rgb(27 25 25 / 76%);
        padding: 2rem;
        display: flex
    ;
        flex-direction: column;
        justify-content: center;
        z-index: 1;
    }

.country-name {
    font-size: 5rem;
    font-weight: 500;
    /* color: white; */
 }
 .country-name1 {
    font-weight: 500;
    color: white;
 }

    .address {
      line-height: 1.8;
    }

    /* Right panel styles */
    iframe {
      width: 100%;
      height: 100%;
      border: none;
    }

    /* Country list styles */
    .country-list {
    position: absolute;
    top: 4rem;
    right: 1rem;
     padding: 2rem;
    border-radius: 5px;
    z-index: 2;
    margin-right: 100px;
    background: rgb(27 25 25 / 76%);
}

    .country-list ul {
      list-style: none;
      margin: 0;
      padding: 0;
    }

    .country-list li {
        cursor: pointer;
        margin: 0.5rem 0;
        transition: color 0.3s ease;
        border-bottom: 1px solid #ffffff;
        font-weight: 500;
        line-height: 30px;
        font-size: 17px;
    }

    .country-list li:hover {
      /* color: #ff0000; */
      color: #f26d21;
    }

    /* UAE city list styles */
    .city-list {
      margin-top: 1rem;
      list-style: none;
      padding: 0;
    }

    .city-list li {
    cursor: pointer;
    margin: 0.3rem 0;
    transition: color 0.3s ease;
    font-size: 17px;
     color: #ff6a12;
    line-height: 24px;
   /* border-bottom: 1px solid #ffffff3d;
    text-transform: uppercase;*/
}

.city-list li:hover {
    color: #0f86bd;
}

.city-list li.active {
    color: #f81010; /* Active color */
    border-color: #0f86bd; /* Optional: change border color when active */
}


    /* Popup styles */
    #popup {
      display: none;
      position: absolute;
      background: rgba(0, 0, 0, 0.8);
      color: #fff;
      padding: 0.5rem 1rem;
      border-radius: 5px;
      z-index: 3;
    }


    @media (max-width: 767px) {
        .country-list {
    position: absolute;
    top: 4rem;
    right: 0rem;
    background: rgb(119 118 118 / 19%);
    padding: 1rem;
    border-radius: 5px;
    z-index: 2;
    margin-right: 0px;
    font-size: 15px;
}

.left-panel {
    position: absolute;
    top: 0;
    left: 0px;
    width: 100%;
    
    background: rgb(0 0 0 / 12%);
    padding: 1rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    z-index: 1;
}

.country-name {
    font-size: 2rem;
    margin-bottom: 1rem;
}


}
