body {
    background-color: #211f1f;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 100vh;
    margin: 0;

    font-family: "Inter", sans-serif;
    color: white;
}

.panelsContainer{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    min-height: 100vh;
}

button {
    display: block;
    margin-bottom: 10px;
    background: #005DBB;
    color: #FFFFFF;
    padding: 0.4rem 0.8rem 0.4rem 0.8rem;
    border: solid #207DDB 1px;
    border-radius: 6px;
}
button:hover {
    background: #303D6B;
}
button:disabled {
    background: #404040;
    color: #B0B0B0;
    border: solid #000000 0px;
}

a{
    color: #95a1dd;
}

.panelHeader{
    font-size: 1.3rem;
    font-weight: bold;
    border-radius: 0.8rem 0.8rem 0 0;
    margin: -20px -20px 20px -20px;
    padding: 8px;
    color: #303030;
    background-color: #FFFFFF;
    text-align: center;
}

.mainPanel{
    background-color: #101010;
    border-radius: 1rem;
    box-shadow: rgba(0, 0, 0, 0.25) 0 0 1.3rem;
    border-style: solid;
    border-width: 1px;
    border-color: #FFFFFF;
    padding: 20px;
    max-width: 22rem;
    width: 100%;
    margin: 2rem;
}

#statusTextFWUP{
    white-space: pre-line;
}
#statusTextBBDW{
    white-space: pre-line;
}

.fwupPanel{

}
.fwupPanel .panelHeader{

}

.bbdwPanel{

}
.bbdwPanel .panelHeader{

}

.footer{
    position: absolute;
    padding: 2rem;
    max-height: 20vh;
    bottom: 0;
    left: 0;
}
.footer h1{
    font-size: 2rem;
    font-weight: bold;
    color: #606060;
    margin: 0;
}
.footer p{
    font-size: 1rem;
    font-weight: bold;
    color: #606060;
    margin: 6px 0 0 0;
}

progress {
    border: solid 0;
    width: 100%;
    height: 0.4rem;
    -webkit-appearance: none;
    appearance: none;
}

progress::-webkit-progress-bar {
    background-color: #404040;
}

progress::-webkit-progress-value {
    background-color: #005DBB;
}