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

#jumboTop{
    width: 100%;
    margin: 0;
    padding-top: 5px;
    padding-bottom: 10px;
    background-color: black;
    text-align: center;
    color: lightgray;
}

.slidecontainer{
    width: 300px;
    height: 40px;
    margin-left: auto;
    margin-right: auto;
    background-color: lightgray;
    padding-top: 15px;
    border-radius: 10px;
    padding-left: 10px;
    padding-right: 10px;
}

.slider{
    -webkit-appearance: none; /* Entfernt Standard-Styling */
    height: 8px;
    border-radius: 4px;
    background: linear-gradient(to right, #FFC106 0%, #FFC106 50%, white 50%, white 100%);
}

/* Farbe der Leiste (Track) */
.slider::-webkit-slider-runnable-track {
    height: 8px;
    border-radius: 5px;
}

/* Farbe des Daumens (Thumb) */
.slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    margin-top: -8px;
    appearance: none;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    border-color: black;
    border-style: solid;
    background: #FFC106; /* Farbe des Daumens */
    cursor: pointer;
}

.time-display {
    font-size: 24px;
    text-align: center;
    margin-top: 20px;
    border-radius: 10px;
    background-color: black;
    width: 200px;
    margin-left: auto;
    margin-right: auto;
    font-weight: bold;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.color-picker-container {
    max-width: 300px;
    margin: 20px auto;
}

.color-picker-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
}

.color-picker-container .color-preview {
    width: 80px;
    height: 80px;
    border: 1px solid #000;
    border-radius: 50%;
    margin-right: 20px;
}

.color-picker-container .color-field {
    width: 200px;
    height: 200px;
    border-radius: 8px;
    border: 2px solid #ccc;
    cursor: url("circle-cursor-svg.svg") 16 16, auto;
    background-blend-mode: multiply;
    transform: translate3d(0, 0, 0);
    will-change: background-image;
    backface-visibility: hidden;
    overflow: hidden;
}

.color-picker-container .hue-slider {
    -webkit-appearance: none;
    width: 100%;
    height: 20px;
    border-radius: 10px;
    background: linear-gradient(to right, 
        hsl(0, 100%, 50%), hsl(60, 100%, 50%), hsl(120, 100%, 50%), 
        hsl(180, 100%, 50%), hsl(240, 100%, 50%), hsl(300, 100%, 50%), 
        hsl(360, 100%, 50%));
    outline: none;
    opacity: 0.7;
    transition: opacity .2s;
}

.color-picker-container .hue-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    background-color: var(--thumb-color, hsl(0, 100%, 50%));
    cursor: pointer;
    border: 2px solid white;
    box-shadow: 0 0 0 1px black;
}

.color-picker-container .hue-slider::-moz-range-thumb {
    width: 25px;
    height: 25px;
    border-radius: 50%;
    background-color: var(--thumb-color, hsl(0, 100%, 50%));
    cursor: pointer;
    border: 2px solid white;
    box-shadow: 0 0 0 1px black;
}

.color-picker-container .time-display {
    font-size: 24px;
    text-align: center;
    margin: 20px 0;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

#backGroundContainer{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-color: black;
    color: lightgray;
    width: 100%;
}

#backGroundContainer .color-preview{
    border: 1px solid white;
}

.switch-container {
    display: flex;
    align-items: center;
    margin-top: 20px;
    margin-bottom: 20px;
    margin-left: auto;
    margin-right: auto;
}

.toggle-switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 34px;
}

.toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.toggle-switch .toggle-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: .4s;
}

.toggle-switch .toggle-slider:before {
    position: absolute;
    content: "";
    height: 26px;
    width: 26px;
    left: 4px;
    bottom: 4px;
    background-color: #FFC106;
    border: 1px solid black;
    transition: .4s;
}

.toggle-switch input:checked + .toggle-slider {
    background-color: #806105;
}

.toggle-switch input:focus + .toggle-slider {
    box-shadow: 0 0 1px #ccc;
}

.toggle-switch input:checked + .toggle-slider:before {
    transform: translateX(26px);
}

.toggle-slider.round {
    border-radius: 34px;
}

.toggle-slider.round:before {
    border-radius: 50%;
}

.switch-label {
    margin-left: 10px;
}

.floating-button {
    padding-left: 10px;
    padding-right: 10px;
    height: 60px;
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #FFC106;
    color: black;
    border: none;
    border-radius: 15px;
    font-size: 16px;
    cursor: pointer;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    transition: background-color 0.3s ease;
    z-index: 3;
}

.floating-button:hover {
    background-color: #806105;
}

.floating-button:active {
    background-color: #FFC106;
}

.bottomWhiteSpace{
    height: 100px;
}