/* BASIC css start */
body {
    margin: 0;
    height: max-content;
    background: black;
}
#container{position:relative; padding: 90px 20px 20px 20px;}
#store-modal {
    height:100%;
    display: none;
    position: fixed;
    z-index: 1000;
    left: 50%;
    top: 50px;
    transform: translate(-50%, 0%);
    width: 90%;
    max-height: 90vh;
    background: black;
    color: white;
    padding: 20px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    overflow: hidden;
}

#modal-content {
    margin-top:20px;
    text-align: left;
    max-height: 80vh;
    overflow-y: auto;
}
#modal-content p { padding: 10px 0; }

.close-btn {
    background: none;
    color: white;
    border: none;
    cursor: pointer;
    float: right;
}

body.modal-open {
    overflow: hidden;
    height: 100vh;
    position: fixed;
    width: 100%;
}

#container {
    position:relative;
    padding: 90px 30px 20px 30px;
    height: calc(100vh - 90px);
    background: black;
}

#map-container {
    padding-top:20px;
    width: 100%;
    height: 100%;
    filter: grayscale(100%);
}

#map {
    width: 100%;
    height: 100%;
}

#store-list {
    flex: 1;
    background: #000;
    color: #fff;
    padding: 10px 0;
    display: flex;
    flex-direction: column;
}

#searchBox {
    padding-bottom: 5px;
    color: white;
    background: none;
    width: 100%;
    font-size: 16px;
    border: none;
    border-bottom: 1px solid white;
    margin-bottom: 20px;
}

#searchBox:focus {
    outline: none;
}

#store-items {
    flex: 1;
    overflow-y: auto;
}

.store-item {
    color: white;
    padding: 15px 0;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s;
    line-height: 18px;
}

#store-details {
    padding: 20px;
    color: white;
    background: black;
    height: 100%;
    border-radius: 5px;
}

#store-details p {
    margin-bottom: 10px;
}

#store-details button {
    background: black;
    color: white;
    border: none;
    cursor: pointer;
    margin-bottom: 10px;
}

#ep-header .header-menu a {
    color: white;
}

.LogoTop {
    color: white;
}

.swiper {
    overflow:auto;
    width: 100%;
    height: 80%;
}

.swiper-slide {
    font-size: 12px;
}

.swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.swiper-pagination {
    top: 0px;
}

.swiper-pagination-bullet {
    width: 20px;
    height: 20px;
    line-height: 20px;
    font-size: 12px;
    color: white;
    opacity: 1;
    background: rgba(0, 0, 0, 0.2);
}

.swiper-pagination-bullet-active {
    color: white;
}

.tab-menu {
    list-style: none;
    padding: 0;
    display: flex;
    gap: 10px;
}

.tab-link {
    color: white;
    cursor: pointer;
    padding: 10px 20px 0 0;
}

.tab-link.active {
    color: white;
}

#header-top {
    color: white;
}

#store-map{filter: grayscale(100%);}
.search_locate{position:relative;}
.search_locate h2{color:white; padding-bottom:10px;}
.search_locate #searchButton{
    border: none;
    background: none;
    padding: 5px 10px;
    position: absolute;
    top: 37px;
    right: 0px;
    color: white;
}
/* BASIC css end */

