<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.flex-row-column {
    display: flex;
    flex-direction: column;
}

@media only screen and (min-width: 1024px) {
    .flex-row-column {
        flex-direction: row;
    }
}

.slot-report-container {
    padding: 10px;
    border: 2px solid #FF5715;
    border-radius: 25%;
    width: 50px;
    text-align: center;
    display: inline-block;
    margin: 0.5em;
}

input[type="number"] {
    width: 100%;
}

@media only screen and (min-width: 1024px) {
    input[type="number"] {
        width: 50%;
    }
}
</pre></body></html>