/* Popup Modal Styles */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center; /* Center horizontally */
    align-items: center;     /* Center vertically */
    z-index: 9999;
}

.popup-content {
    background: white;
    width: 90%;
    max-width: 400px; /* Limit width */
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
}

.popup-body {
    padding: 0;
    position: relative;
}

.popup-body img {
    width: 100%;
    height: auto;
    display: block;
}

.popup-text {
    padding: 15px;
    font-size: 14px;
    color: #333;
    text-align: center;
    line-height: 1.5;
    background: #fff;
}

.popup-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 15px;
    background: #f8f9fa;
    border-top: 1px solid #eee;
    font-size: 13px;
}

.dont-show-today {
    display: flex;
    align-items: center;
    gap: 5px;
    color: #666;
    cursor: pointer;
}

.close-popup {
    background: none;
    border: none;
    color: #333;
    font-weight: 600;
    cursor: pointer;
    padding: 5px 10px;
}

.close-popup:hover {
    color: #000;
}
