#searchDetailsDiv {
    position: absolute;
    top: 67px;
    left: 12px;
    background-color: var(--white);
    z-index: 201;
    width: fit-content;
    font-family: var(--font-family);
    font-weight: 400;
    color: rgb(78, 76, 76);
    padding: 0;
    min-width: 400px;
    max-width: 400px;
    border: 1.1px solid var(--icy-mist);
    border-radius: 8px;
    box-shadow: 0 0 6px 2px rgba(0, 0, 0, 0.11);
}

#searchDetailsDiv h6 {
    margin-bottom: 2px;
    font-size: 13px;
    font-weight: 600;
}

.smallText {
    font-weight: 500;
    font-size: 14px;
    color: var(--nightShade);
}

#searchDetailsDiv:not(.active) {
    display: none;
}

#hideSearchDetailsButton {
    position: absolute;
    bottom: 0px;
    right: -35px;
    border-style: none;
    background-color: var(--lightBlue);
    padding: 5px;
    padding-top: 7px;
    font-size: 10px;
}

#hideSearchDetailsButton:focus {
    outline: none;
}

#hideSearchDetailsButton img {
    height: 20px;
    transform: rotate(270deg);
    background-color: var(--white);
    border-radius: 100%;
    box-shadow: var(--box-shadow);
}

#showSearchDetailsButton {
    position: absolute;
    bottom: 12px;
    left: 40px;
    border-style: none;
    background-color: var(--lightBlue);
    padding: 5px;
    padding-top: 7px;
    font-size: 10px;
    z-index: 100000;
}

#showSearchDetailsButton:not(.active) {
    display: none;
}

#showSearchDetailsButton:focus {
    outline: none;
}

#showSearchDetailsButton img {
    height: 20px;
    transform: rotate(90deg);
    background-color: var(--white);
    border-radius: 100%;
    box-shadow: var(--box-shadow);
}

.your-map-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    width: 124px;
    min-height: 157px;
    background: white;
    right: -136px;
    top: -2px;
    border-radius: 8px;
    border: 1px solid #4a4e5a;
    position: absolute;
    justify-content: flex-end;
    padding: 8px;
    box-shadow: 0 4px 9px rgba(0, 0, 0, 0.15);
    z-index: 1;
}

.your-map-container.hidden {
    display: none;
}
.your-map-label {
    font-size: 13px;
    font-weight: 600;
    font-family: var(--font-family);
    color: var(--nightShade);
}

#yourMapSkeleton {
    position: absolute;
    inset: 8px;
    width: 100%;
    left: 0px;
    top: 0px;
    height: 100%;
    border-radius: 8px;
    background: #eef0f2;
    animation: skeletonMapPulse 1.5s ease-in-out infinite;
    pointer-events: none;
    z-index: 1;
}

@keyframes skeletonMapPulse {
    0% {
        opacity: 1;
    }
    50% {
        opacity: 0.6;
    }
    100% {
        opacity: 1;
    }
}

#yourMapSkeleton.hidden {
    display: none;
}

@media (max-width: 570px) {
    #searchDetailsDiv {
        min-width: 300px;
    }
}

@media (max-width: 1059px) {
    .businessDetailsHeaderContainer.mobile-bottom {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        background-color: var(--white);
        border-top: 1px solid var(--icy-mist);
        box-shadow: 0 -3px 6px rgba(0, 0, 0, 0.1);
        z-index: 99999;
        overflow: hidden;
        max-height: 64px;
        transition: max-height 0.3s ease;
        border-top-left-radius: 12px;
        border-top-right-radius: 12px;
    }

    .businessDetailsHeaderContainer.mobile-bottom.expanded {
        max-height: 189px;
    }
}

@media (max-width: 1059px) {
    #searchDetailsDiv {
        max-width: 100%;
        width: 100%;
        left: 0 !important;
        top: 47px;
        border-top-left-radius: 0;
        border-top-right-radius: 0;
        z-index: 999999;
    }
    .your-map-container {
        position: fixed;
        right: auto;
        top: auto;
        bottom: 0;
        left: 8px;
        transform: none;
        z-index: -1;
        opacity: 0;
        transition: opacity 0.3s ease;
    }
}

.drag-icon {
    display: none;
    pointer-events: none;
}

@media (max-width: 1059px) {
    .drag-icon-bottom {
        display: block !important;
        position: absolute;
        bottom: 4px;
        left: 50%;
        transform: translateX(-50%);
    }
    .keywordsContainer {
        position: relative;
        padding: 12px 16.5px 16px 12px;
    }
}
