﻿.modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.4);
}

.modal-content {
    background-color: #fefefe;
    margin: 15% auto;
    padding: 20px;
    border: 1px solid #888;
    width: 80%;
    box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2);
    text-align: center;
    color: #111 !important;
}

.close-button {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

    .close-button:hover,
    .close-button:focus {
        color: black;
        text-decoration: none;
        cursor: pointer;
    }

.modal button {
    margin-top: 20px;
    padding: 15px 32px;
    font-size: 16px;
    cursor: pointer;
    border: solid 1px black;
    border-radius: 8px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    color: white; /* Common style for both buttons */
}

#closeModal {
    background-color: #e74c3c; /* Red color for the Close button */
}

#reactivate {
    background-color: #3d58a2; /* Green color for the Reactivate Membership button */
}


/* Media query for larger screens */
@media screen and (min-width: 768px) {
    .modal-content {
        width: 40%; /* Smaller width for larger screens */
    }
}