.liked-places-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed; 
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.2); 
    backdrop-filter: blur(10px);
    z-index: 9999;
    transition: opacity 0.5s, visibility 0.5s;
}
*:focus {
    outline: none !important;
    box-shadow: none !important;
}
.liked-places-container {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    gap: 20px;
    justify-content: flex-start;
    position: fixed;
    z-index: 10000;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: auto; 
    min-width:280px;
    height: 80%;
    background-color: white;
    border-radius: 20px;
    box-shadow:0px 0px 5px rgba(0, 0, 0, 0.2);
    overflow-y: auto;
    padding: 20px;
    overflow-y: auto;
    
    &::-webkit-scrollbar {
        display: none;
    }
    -ms-overflow-style: none; 
    scrollbar-width: none; 
}

.liked-place {
    display: flex;
    border: 1px solid #ccc;
    border-radius: 8px;
    padding: 15px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.liked-place-image-container {
    flex: 1;
}

.liked-place-image {
    width: 100%; 
    height: auto; 
    border-radius: 5px;
}

.liked-items-text-container {
    flex: 2;
    padding-left: 20px; 
}

.liked-place-name, .liked-place-location, .liked-place-description {
    margin-top: 10px;
    margin-bottom: 5px;
    color: #333; 
    font-size: 20px; 
}

.liked-place-location, .liked-place-description {
    color: #666; 
    font-size: 14px; 
}


.close-icon {
    position: absolute;
    top: 35px;
    right: 40px;
    cursor: pointer;
    color: white; 
    font-size: 35px;
    z-index: 10000;
    transition:0.2s;
}

.close-icon:hover{
    background-color: transparent;
    transform: scale(1);
    box-shadow: none;
    color:#00ADB5;
}
