/* */

#systemWideSMSMenu {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 850px;
    background-color: #030303;
    z-index: 10000;
    color: #ffffff;
    padding: 20px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.7);
    border: 3px solid #555;
    border-radius: 8px;
    font-family: Consolas, monospace;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
    font-family: Consolas, monospace;
}


#systemWideSMSMenuLabel {
    font-size: 32px;
    font-weight: 800;
}

#systemWideSMSMenuTextarea {
    width: 90%;
    font-size: 20px;
    padding: 10px;
    margin-top: 20px;
    color-scheme: dark;
}

#systemWideSMSMenuButtonRow {
    width: 90%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

#systemWideSMSMenuCancelButton,
#systemWideSMSMenuSubmitButton {
    width: 100px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 24px;
    margin-top: 20px;
    cursor: pointer;
}

#systemWideSMSMenuCancelButton {
    background-color: red;
}

#systemWideSMSMenuSubmitButton {
    background-color: green;
}

#systemWideSMSMenuCancelButton:hover,
#systemWideSMSMenuSubmitButton:hover {
    opacity: 85%;
}


#systemWideSMSMenuSendingDisplayRow {
    font-weight: 700;
    font-size: 28px;
}
