.login-w-google .register-google {
    background: transparent;
    padding: unset;
    border: none;
    color: #333333 !important;
    font-size: 14px;
    border-bottom: none !important;
    font-family: "Instrument Sans", sans-serif;
    letter-spacing: 0.7px;
    font-weight: 400;
    display: flex;
    align-items: center;
}

.login-w-google .google-img {
    width: 21px;
    margin-right: 7px;
    padding: unset;
}

.login-w-google .register-google:hover {
    background: transparent !important;
}

.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}

#googleLoginPopup .popup-content {
    min-width: 20dvw;
    max-width: 50dvw;
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    text-align: center;
    position: relative;
}

#googleLoginPopup .popup-content #closePopup {
    cursor: pointer;
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 20px;
}

@media (max-width: 768px) {
    #googleLoginPopup .popup-content {
        width: 90dvw;
    }
}

.text-ellipse {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden !important;
}


.image-popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 1000;
    justify-content: center;
    align-items: center;
}

.popup-image {
    max-width: 90%;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.popup-close {
    position: absolute;
    top: 20px;
    right: 20px;
    color: #fff;
    font-size: 2rem;
    cursor: pointer;
    font-weight: bold;
}

.text-right {
    text-align: right;
}

.popup-close:hover {
    color: #ccc;
}