/* Menu Styles */
[id$="_menuMS"] {
    width: 30%;
    margin: 1.25rem auto;
    padding: 1.25rem;
    background-color: white;
    box-shadow: 0 0.125rem 0.5rem rgba(0, 0, 0, 0.1);
    opacity: 0.85;
}

/* Menu Link Styles */
a[class*="_menuMS_1"][class*="_menuMS_3"] {
    display: block;
    padding: 0.875rem 1.25rem;
    color: black;
    font: 500 0.9375rem sans-serif;
    font-weight: bold;
    text-decoration: underline;
}

a[class*="_menuMS_1"][class*="_menuMS_3"]:hover {
    color: #E51937;
}

.confirmation-message {
    background-color: white !important;
    color: black !important;
    padding: 1rem !important;
    opacity: 0.85;
    margin-left: 20%;
    margin-right: 20%;
    text-align: center !important;
    h1{
        color: #E51937 !important;
        font-size: 22pt !important;
        font-weight: bold !important;
    }
    p{
        color: black !important;
    }
}

@media screen and (max-width: 1024px) {
    [id$="_menuMS"] {
        width: 50%;
        padding: 1.25rem;
    }

    .confirmation-message {
        margin-left: 15%;
        margin-right: 15%;
        padding: 1.25rem !important;
        h1{
            font-size: 20pt !important;
        }
    }

    a[class*="_menuMS_1"][class*="_menuMS_3"] {
        font-size: 1rem; /* Increase font size to 16px */
    }
}

@media screen and (max-width: 768px) {
    [id$="_menuMS"] {
        width: 70%;
        padding: 1rem;
    }

    .confirmation-message {
        margin-left: 10%;
        margin-right: 10%;
        padding: 1rem !important;
        h1{
            font-size: 18pt !important;
        }
    }

    a[class*="_menuMS_1"][class*="_menuMS_3"] {
        font-size: 1.125rem; /* Increase font size to 18px */
    }
}


@media screen and (max-width: 320px) {
    [id$="_menuMS"] {
        width: 90%;
        padding: 1rem;
    }

    .confirmation-message {
        margin-left: 5%;
        margin-right: 5%;
        padding: 0.75rem !important;
        h1{
            font-size: 16pt !important;
        }
    }

    a[class*="_menuMS_1"][class*="_menuMS_3"] {
        font-size: 1.25rem; /* Increase font size to 20px */
    }
}