.dropdown-btn-pink {
    background-color: rgba(201, 168, 208, 1);
    color: #fff !important;
    width: 100%;
    height: 40px;
    padding: 0 12px !important;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 500;
    border: 0;
}

.map-search-input {
    border-radius: 0;
    border-color: rgba(117, 96, 128, 0.5);
    box-shadow: none;
    outline: none !important;
}
.map-search-input:focus {
    box-shadow: none;
    outline: none !important;
}
.map-search-input:active {
    box-shadow: none;
    outline: none !important;
}

.btn-top-search-pink {
    background-color: rgba(201, 168, 208, 1);
}

#store-locations {
    display: flex;
    height: 600px;
    max-height: 100%;
    flex-direction: column;
    overflow-y: scroll;
    scroll-snap-type: y mandatory;
    gap: 2rem;
    padding-right: 1rem;
    scrollbar-width: thin;
    scrollbar-color: rgba(201, 168, 208, 1) rgba(255, 255, 255, 0.5);
}

#active-store-location {
    border-left: 10px solid rgba(201, 168, 208, 1);
}

.store-location {
    scroll-snap-align: start;
    flex-shrink: 0;
    padding: 20px;
    border: 1px solid rgba(117, 96, 128, 0.5);
    color: rgba(0, 0, 0, 0.7);
    display: flex;
    flex-direction: column;
    gap: 0.8rem;

    /* border-radius: 20px; */
}
.store-header > p,
h3 {
    margin: 0;
}

.store-header {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}
.store-type {
    font-size: 14px;
    font-weight: lighter;
}

.store-location-meta {
    display: flex;
    gap: 0.6rem;
    align-items: center;
}

#store-locations::-webkit-scrollbar {
    width: 8px; /* Adjust the width as needed */
}

#store-locations::-webkit-scrollbar-thumb {
    background-color: black;
    border-radius: 10px;
}

#store-locations::-webkit-scrollbar-track {
    background-color: rgba(201, 168, 208, 0.4);
    border-radius: 10px;
}

.store-title {
    font-size: 16px;
}

.store-location-devices {
    font-size: 14px;
}
.store-type {
    font-weight: lighter;
}
.btn-pink {
    background-color: rgba(201, 168, 208, 1);
    color: #fff !important;
    padding: 10px 20px 5px 25px;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 500;
    display: inline-block !important;
}

.store-meta-container {
    font-size: 14px;
    display: flex;
    gap: 0.5rem;
    flex-direction: column;
}
.btn-ghost {
    border: 0;
    padding: 0;
    text-decoration: underline;
    background: none;
    text-align: start;
    display: inline-flex;
    align-self: flex-start;
    font-size: 14px;
}
.map-locations-wrapper {
    display: grid;
    grid-template-columns: 1fr 2fr;
    max-height: 800px;
    gap: 1rem;
}

@media only screen and (max-width: 900px) {
    /* Styles for iPhones */
    #store-locations {
        height: fit-content;
        flex-direction: row;
        overflow-x: scroll;
        scroll-snap-type: x mandatory;
    }

    #store-locations::-webkit-scrollbar {
        display: none;
    }

    .store-location {
        width: 300px;
    }

    .map-locations-wrapper {
        grid-template-columns: 1fr;
        height: fit-content; /* Remove the fixed height */
        max-height: none; /* Remove the max-height */
    }
}
