/* Style for the modal */
.modal-bg {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* semi-transparent background */
    backdrop-filter: blur(8px); /* blur effect */
    justify-content: center;
    align-items: center;
    z-index: 1;
  }
.modal-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: rgba(255, 255, 255, 0.9);
    /* White background with transparency */
    padding: 20px;
    background-color: #fff;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    margin: 20px;
    padding: 30px;
    text-align: center;
    font-family: 'Roboto', sans-serif;
}

.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.close:hover,
.close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}

.heading {
    font-size: 34px;
    font-weight: 700;
    margin: 0 0 20px 0;
}

.heading span {
    color: #FF0000;
}

.btn {
    background: #FF0000;
    border-radius: 8px;
    font-size: 26px;
    color: #fff;
    border: none;
    padding: 12px 36px;
    font-weight: 700;
    cursor: pointer;
    font-family: 'Roboto', sans-serif;
    display: block;
    text-decoration: none;
    text-transform: uppercase;
} 