/* Styles for the modal */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
}

/* Styles for the modal content */
.modal-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #7c0b0b;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
    max-width: 400px;
    width: 100%;
}

/* Styles for the close button */
.close {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 24px;
    color: #820d0d;
    cursor: pointer;
    transition: color 0.3s ease-in-out;
}

/* Hover effect for the close button */
.close:hover {
    color: #333;
}

/* Styles for the popup inner content */
.popup-inner {
    text-align: center;
}

/* Styles for the popup content */
#popupContent {
    font-size: 16px;
    line-height: 1.5;
    color: #333;
    margin-top: 15px;
}

.button-link {
    display: inline-block;
    padding: 10px 20px;
    background-color: red;
    color: white;
    text-decoration: none;
    font-size: 16px;
    cursor: pointer;
}