body {
    margin: 0;
    height: 100vh;
    overflow-y: hidden;
}

#utaEmbedded {
    height: 100vh;
    width: 100%;
}

dialog {
    /* display: none; */
}

#noticeModal{
    height: 100vh; 
    width: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Adds a semi-transparent background */
    backdrop-filter: blur(2px); /* Applies blur effect to the background behind the modal */
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    /* display: block; */

    
}

.secondLine {
    margin-top: -2%;
    background-color: rgb(5, 53, 227);
    /* border: 1px solid blue; */
    box-shadow: 1px 1px 15px orange;
    width: 100%;
    height: 5px;
    padding-bottom: 5px;
    z-index: 2;
}

.topLine {
    margin-top: -1.2%;
    background-color: rgb(255, 94, 1);
    /* border: 1px solid blue; */
    box-shadow: 1px 1px 15px orange;
    width: 100%;
    height: 5px;
    padding-bottom: 5px;
}

#noticeModalContentCover {
    width: 100%;
    height: 95vh;
    display: flex;
    flex-direction: row;
    justify-content: center;
    /* align-items: center; */
    /* border: 1px solid blue; */
}

#noticeModalContent {
    border: 4px outset rgb(230, 229, 229);
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    background-color: white;
    /* top: 10%; */
    width: 50%;
    height: 90%;
    z-index: 100;
    justify-content: center;
}

.noticeModalContentAlignment {
    width: 100%;
    height: 100%;
    margin-top: -5%;
    /* height: 50%; */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.dataSecurityInfo {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
}

.noticeContent {
    width: 90%;
    /* border: 1px solid red; */
    margin-top: 0%;
    margin-left: 5%;
}

.displayFlexRow {
    display: flex;
    flex-direction: row;
    align-items: top;
}

.fontBoldandWidth {
    font-weight: bold;
    /* width: 300px; */
    display: flex;
    flex: 1;

}

.verticalSpace5px {
    height: 10px;
}

.leftAlignment {
    display: flex;
    justify-content: left;
    flex: 1.8;
}

#notice {
    width: 100%;
    border: 2px solid rgb(255, 94, 1);
    box-shadow: 1px 1px 20px rgb(248, 198, 107);
    /* background-image: linear-gradient(white, yellow, white); */
    border-radius: 4px;
    display: flex;
    flex-direction: column;
    justify-content: center;

}

#noticeContent {
    width: 90%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-left: 5%;
}

.summaryTitleStyle {
    font-weight: bold;
    font-size: 25px;
    text-decoration: underline;
    color: rgb(215, 7, 7);
}

.keyFeatureTitleStyle {
    font-weight: bold;
    font-size: 18px;
    text-decoration: underline;
    color: rgb(215, 7, 7);
}

.noticeTitleStyle {
    font-weight: bold;
    color: rgb(215, 7, 7);
    text-decoration: underline;
}

.italicStyle {
    font-style: italic;
}

.noticeFooter {
    display: flex;
    justify-content: center;
    width: 100%;
}

.okayNoticeButton {

    background-image: linear-gradient(white, orange, white);
    border-radius: 50%;
    border: 1px outset silver;
    cursor: pointer;
    animation: sunny 1s linear infinite;
}

.okayNoticeButton:hover {
    background-image: linear-gradient(white, rgb(255, 199, 96), white);

}

.okayNoticeButton:focus {
    border-color: blue;
    background-image: linear-gradient(white, rgb(207, 207, 207), white);
    border: 1px inset silver;
}

@keyframes sunny {
    0% {
        box-shadow: 1px 1px 5px red;
    }
    25% {
        box-shadow: 1px 1px 10px red;
    }
    50% {
        box-shadow: 1px 1px 20px red;
    }
    75% {
        box-shadow: 1px 1px 40px red;
    }
    100% {
        box-shadow: 1px 1px 60px red;
    }
}

#smallScreenNotice {
    display: none;
}

@media (max-width: 900px) {
    body > *:not(#smallScreenNotice) {
        display: none !important;
    }

    #smallScreenNotice {
        display: flex;
        justify-content: center;
        align-items: center;
        background-color: #ffb28f;
        color: #333;
        text-align: center;
        font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
        width: 100vw;
        height: 100vh;
        z-index: 9999;
        position: fixed;
        top: 0;
        left: 0;
    }

    .noticeContentBox {
        max-width: 65%;
        background: white;
        padding: 30px;
        border-radius: 12px;
        box-shadow: 0 1px 40px rgba(0, 0, 0, 0.5);
    }

    .noticeContentBox h2 {
        color: #c0392b;
        margin-bottom: 15px;
    }

    .noticeContentBox p {
        font-size: 16px;
        margin: 10px 0;
    }

    .orangeWords {
        color: orange;
    }

    .noticeSignature {
        margin-top: 20px;
        font-style: italic;
        font-weight: bold;
        color: #555;
    }
}
