body {
    background: #000000 !important;
    background-image: none !important;
}
.DateDiv, .DateRange {
    display: none;
}
.flex-container {
    display: flex;
    flex-flow: row wrap;
    justify-content: center;
    align-items: center;
    width: 100%;
}
.flex-container > div {
    background-color: var(--text-container-bkgrd);
    margin: 5px;
    padding: 10px;
    font-size: 15px;
    text-align: center;
    border-radius: 10px;
}
.frame {
    flex: 1 1 auto;
    border: 0;
}
.item1 {
    flex-basis: auto;
    min-width: 370px;
}
.item2, .item5 {
    flex-basis: auto;
    max-width: 550px;
}
.item3, .item4, .item6 {
    flex-basis: auto;
    flex: 1 1 auto;
    overflow: auto;
}
.item3 {
    max-width: 640px;
}
.item4 {
    max-width: 275px;
}
.item6 {
    max-width: 700px;
}
img {
    max-width: 100%;
    height: auto;
}
.soflow {
    border-radius: 2px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1), 0 8px 16px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    background-color: #d1d1d1;
    border: 1px solid #aaa;
    color: #000;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 14px;
    font-weight: 700;
    margin: 5px;
    overflow: hidden;
    padding: 5px 10px;
    text-overflow: ellipsis;
    white-space: nowrap;
    width: 250px;
}
button {
    margin-bottom: 5px;
    padding: 5px 10px;
    font-size: 14px;
    font-weight: 700;
    background: #d1d1d1;
    border-color: #d1d1d1;
}
#ModalNotice {
    visibility: hidden;
    background-color: rgba(0, 35, 160, 0.9);
    color: #fff;
    text-align: center;
    border-radius: 12px;
    padding: 50px;
    position: fixed;
    z-index: 1;
    bottom: 0;
    font-size: 17px;
    margin: 20px auto;
}
#ModalNotice.show {
    visibility: visible;
    animation: fadein 0.5s, fadeout 0.5s 2.5s;
}
#modal-content {
    background-color: #e4e4e4;
    display: none;
    margin: 5px;
    position: absolute;
    top: 35px;
    width: 60%;
    z-index: 1000;
}
#modal-content.active {
    display: block;
}
.install-button {
    display: none;
    padding: 12px 25px;
    font-size: 16px;
    font-weight: bold;
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    cursor: pointer;
    margin: 10px auto;
    transition: background-color 0.2s ease;
}
.install-button:hover {
    background-color: #0056b3;
}
.title {
    text-align: center;
    font-size: 30px;
    text-transform: uppercase;
    margin: 20px 0;
    color: white;
}
