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

.popup-content {
    position: relative;
    background: transparent;
    padding: 0;
    border-radius: 5px;
    max-width: 500px;
    max-height: 90vh;
}

.popup-close {
    position: absolute;
    top: 15px;
    right: 15px;
    cursor: pointer;
    width: 30px;
    height: 30px;
    background: rgba(0, 0, 0, 0.5);
    border: 2px solid #fff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    font-size: 20px;
    line-height: 1;
    text-decoration: none;
    z-index: 1;
}

.popup-close:hover {
    background: rgba(255, 255, 255, 0.2);
}

.popup-image-wrapper {
    position: relative;
    display: block;
}

.popup-image {
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: 5px;
}

.popup-image-wrapper .rate-date-overlay {
    position: absolute;
    bottom: 91px;
    left: 52%;
    transform: translateX(-50%);
    color: #fff;
    padding: 8px 16px;
    border-radius: 4px;
    font-size: 29px;
    font-weight: 600;
    z-index: 10;
    white-space: nowrap;
} 