.like_popup_container {
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: #191919;
    border-radius: 40px;
    padding: 15px 25px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
    display: none;
    z-index: 100;
    white-space: nowrap;
    border: none;
    margin-bottom: 15px;
}
.dark-theme .like_popup_container {
    background: #191919;
}
.like_popup_container.show {
    display: flex;
    gap: 30px;
}
.like_choice_wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    transition: transform 0.2s;
}
.like_choice_wrapper:hover {
    transform: scale(1.1);
}
.like_choice_wrapper img {
    width: 35px;
    height: 35px;
    margin-bottom: 10px;
}
.like_choice_wrapper span {
    font-size: 14px;
    color: #d1d1d1 !important;
    font-family: inherit;
    font-weight: 400;
}
.like_choice_wrapper.active span {
    color: #ffffff !important;
    font-weight: 600;
}
.like_container {
    position: relative;
}
.like_text {
    font-size: inherit !important;
    display: inline !important;
    margin-top: 0 !important;
}

/* .like_text.active {
    font-weight: 600;
    color: #35444E;
} */

.dark-theme .like_text.active {
    color: #ffffff;
}
