header {
    color: white;
    background-color: #1F3250;
    gap: 20px;
    padding: 5px 0;
}

header a {
    color: white;
}

header a:hover {
    color: white;
}

header h1 {
    font-size: 25px;
}

body {
    height: 100vh;
    display: flex;
    flex-direction: column;
    margin: 0;
}

body .content {
    padding: 10px 15px;
}

body .alert {
    margin-bottom: 0;
}

footer {
    color: #bbbbbb;
    background-color: #1F3250;
    margin-top: auto;
    padding: 5px 15px;
}

input[type='range'] {
    -webkit-appearance: none;
    appearance: none;
    background: transparent;
    cursor: pointer;
}

input[type="range"]::-webkit-slider-runnable-track {
    background: #ABCDFC;
    height: 8px;
    cursor: pointer;
    border-radius: 0;
}
input[type="range"]::-moz-range-track {
    background: #ABCDFC;
    height: 8px;
    cursor: pointer;
    border-radius: 0;
}

input[type="range"]:disabled::-webkit-slider-runnable-track {
    background: #C8C8C8;
}
input[type="range"]:disabled::-moz-range-track {
    background: #C8C8C8;
}

input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    background-color: #0D6EFD;
    margin-top: -2px;
    height: 12px;
    width: 24px;
}
input[type="range"]::-moz-range-thumb {
    -webkit-appearance: none;
    appearance: none;
    background-color: #0D6EFD;
    margin-top: -2px;
    height: 12px;
    width: 24px;
}

input[type="range"]:active::-webkit-slider-thumb {
    background-color: #0D6EFD;
}
input[type="range"]:active::-moz-range-thumb {
    background-color: #0D6EFD;
}

/* Only firefox is nice enough to provide this pseudo class... With chrome, it would be a massive hack :-/ */
input[type="range"]::-moz-range-progress {
    background-color: #5D9FFC;
    height: 8px;
}
input[type="range"]:disabled::-moz-range-progress {
    background-color: #959595;
}

.pedal-image {
    max-width: 100%;
}

button {
    min-width: 3rem;
}

.accordion-button {
    padding: 4px 1rem;
}

.fullscreen-loader {
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    z-index: 666;
}

.fullscreen-loader-underlay {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: white;
    padding: 3rem;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    z-index: 667;
    border-radius: 4px;
    max-width: 66%;
}

.fullscreen-loader-panel {
    position: fixed;
    top: 0;
    left: 0;
    background-color: black;
    opacity: 0.5;
    width: 100%;
    height: 100%;
    z-index: 665;
}

.text-bold {
    font-weight: bold;
}

a.no-href {
    text-decoration: underline;
    cursor: pointer;
}
