* {
    font-family: system-ui;
}
body {
    background-color: #cccccc;
    color: #000000;
    text-align: left;
    margin: 0;
}

body:has(.preventBodyScroll) {
    overflow: hidden;
}

.box {
    color: #000000;
    background-color: #dadada;
    border-radius: 8px;
    margin: 8px;
    padding: 8px;
}

.photo {
    display: flex;
    width: 100px;
    height: 100px;
    position: relative;
    background: #BD2626;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    vertical-align: middle;
    margin: 6px;
}
.photo.zoom {
    position: fixed;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    margin: 0;
    z-index: 100;
}
.photo img {
    max-width: 100%;
    max-height: 100%;
}
.photo .delete {
    background-color: #EEE;
    position: absolute;
    top: 0;
    right: 0;
    width: 30px;
    height: 30px;
    line-height: 30px;
    text-align: center;
    color: #C00;
    font-family: monospace;
    font-size: 22px;
}
.photo .delete::after {
    content: 'x';
    cursor: pointer;
}
.photo.zoom .delete {
    display: none;
}


.storageGauge {
    height: 30px;
    position: relative;
    background-color: #fff;
}
.storageGauge .storageGaugeBar {
    position: absolute;
    width: 0;
    height: 100%;
    top: 0;
    left: 0;
    background-color: #AAF;
}
.storageGauge .storageGaugeText {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    text-align: center;
}
.storageGauge .storageGaugeText .storageGaugeTextPercent {
    color: #000000;
    font-size: 14px;
}
.storageGauge .storageGaugeText .storageGaugeTextDescription {
    color: #888888;
    font-size: 10px;
}

button {
    background-color: #000000;
    color: #FFFFFF;
    padding: 4px;
    margin: 4px;
    border: none;
}
button:disabled {
    background-color: #BBBBBB;
}