/* Grundlegendes Design */
body {
    margin: 0;
    font-family: Arial, sans-serif;
    font-size: 60px;
    background-color: #111111;
    color: #909090;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

h3 {
    writing-mode: vertical-rl;
    font-family: Arial, sans-serif;
    font-size: 50px;
    color: #4caf50;
}

.exercise-name {
    font-size: 50px;
    width: 560px;
    height: 60px;
    display: flex;
    /* Flexbox aktivieren */
    align-items: center;
    /* Vertikale Zentrierung */
    justify-content: center;
    /* Horizontale Zentrierung */
    overflow-wrap: break-word;
    text-align: center;
    /* Text zentrieren */
    line-height: 60px;
    /* Stellt sicher, dass einzeiliger Text korrekt zentriert wird */
}

.fade {
    transition: opacity 1s ease;
    opacity: 0;
}

.fade.hidden {
    opacity: 0;
    pointer-events: none;
    /* Verhindert Interaktion, wenn ausgeblendet */
}

.fade.visible {
    opacity: 1;
    pointer-events: auto;
    /* Ermöglicht Interaktion, wenn eingeblendet */
}

.fade2 {
    transition: opacity 0s ease;
    opacity: 0;
}

.fade.hidden2 {
    opacity: 0;
    pointer-events: none;
    /* Verhindert Interaktion, wenn ausgeblendet */
}

.fade.visible2 {
    opacity: 1;
    pointer-events: auto;
    /* Ermöglicht Interaktion, wenn eingeblendet */
}

.menue-box {
    position: fixed;
    z-index: 4;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 740px;
    height: 800px;
    padding: 16px;
    background: #3d3d3d;
    border-radius: 20px;
    box-shadow: 0 8px 52px rgba(0, 0, 0, 1);
    justify-content: center;
    /* Zentriert horizontal */
}

.menue-box-ki {
    position: fixed;
    font-size: 1.2rem;
    z-index: 9;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 840px;
    height: 1900px;
    padding: 26px;
    background: #3d3d3d;
    border-radius: 20px;
    box-shadow: 0 8px 52px rgba(0, 0, 0, 1);
    justify-content: center;
    /* Zentriert horizontal */
    overflow: scroll;
}

.menue-box-info {
    position: fixed;
    font-size: 1.2rem;
    z-index: 4;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 740px;
    height: 800px;
    padding: 16px;
    background: #3d3d3d;
    border-radius: 20px;
    box-shadow: 0 8px 52px rgba(0, 0, 0, 1);
    justify-content: center;
}

.send-box {
    position: fixed;
    z-index: 3;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 790px;
    height: 770px;
    padding: 16px;
    background: #3d3d3d;
    border-radius: 20px;
    box-shadow: 0 8px 52px rgba(0, 0, 0, 1);
    justify-content: center;
    /* Zentriert horizontal */
    align-items: center;
}

.delete-box {
    position: fixed;
    z-index: 3;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 790px;
    height: 360px;
    padding: 16px;
    background: #3d3d3d;
    border-radius: 20px;
    box-shadow: 0 8px 52px rgba(0, 0, 0, 1);
    justify-content: center;
    /* Zentriert horizontal */
    align-items: center;
}

.boxChart-item {
    background-color: #111111;
    width: 740px;
    height: 112px;
}

.exer-chart-container {
    background-color: #111111;
    position: absolute;
    z-index: 1;
    top: 14px;
    width: 480px;
    left: 13px;
    height: 124px;
    padding: 8px;
    border-radius: 16px;
}

.freies-box {
    position: fixed;
    z-index: 16;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 740px;
    height: 1530px;
    padding: 16px;
    background: #3d3d3d;
    border-radius: 20px;
    box-shadow: 0 8px 52px rgba(0, 0, 0, 1);
    justify-content: center;
    /* Zentriert horizontal */
}

.info-item {
    position: relative;
    top: 7px;
    font-size: 24px;
    align-items: left;
    height: 60px;
    width: 412px;
    background: #3d3d3d;
    padding: 12px;
    border-radius: 20px;
    overflow-wrap: break-word;
}

.Beschriftungs-item {
    position: relative;
    background-color: #222222;
    top: 4px;
    left: 0px;
    height: 60px;
    margin-bottom: 12px;
    padding: 14px;
    border-radius: 12px;
    box-shadow: 0 8px 12px rgba(0, 0, 0, 1);
}

.menue-item {
    position: absolute;
    z-index: 7;
    top: 16px;
    left: 20px;
    padding: 22px;
}

.menue-item2 {
    position: absolute;
    z-index: 6;
    top: 16px;
    left: 800px;
    padding: 22px;
}

.menue-item-ki {
    position: absolute;
    font-size: 1.1rem;
    z-index: 6;
    top: 16px;
    left: 800px;
    padding: 22px;
}

.banner-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(650px, 1fr));
    gap: 20px;
    padding: 40px;
}

.banner3-item {
    position: fixed;
    top: 40px;
    left: 50%;
    transform: translate(-50%, -50%);
    margin: 20px 0;
    background: #5d5d5d;
    padding: 24px;
    height: 70px;
    width: 720px;
    border-radius: 20px;
}

.banner4-item {
    position: fixed;
    top: 190px;
    left: 50%;
    transform: translate(-50%, -50%);
    margin: 20px 0;
    background: #1d1d1d;
    padding: 24px;
    height: 60px;
    width: 606px;
    border-radius: 20px;
    box-shadow: 0 8px 12px rgba(0, 0, 0, 0.6);
}

.banner5-item {
    position: fixed;
    top: 340px;
    left: 50%;
    transform: translate(-50%, -50%);
    margin: 20px 0;
    background: #1d1d1d;
    padding: 24px;
    height: 60px;
    width: 606px;
    border-radius: 20px;
    box-shadow: 0 8px 12px rgba(0, 0, 0, 0.6);
}

.banner6-item {
    position: fixed;
    left: 50%;
    top: 490px;
    transform: translate(-50%, -50%);
    margin: 20px 0;
    background: #1d1d1d;
    padding: 24px;
    height: 60px;
    width: 606px;
    border-radius: 20px;
    box-shadow: 0 8px 12px rgba(0, 0, 0, 0.6);
}

.banner7-item {
    position: fixed;
    top: 640px;
    left: 50%;
    transform: translate(-50%, -50%);
    margin: 20px 0;
    background: #601616;
    padding: 24px;
    height: 60px;
    width: 606px;
    border-radius: 20px;
    box-shadow: 0 8px 12px rgba(0, 0, 0, 0.6);
}

.banner8-item {
    position: fixed;
    top: 490px;
    left: 50%;
    transform: translate(-50%, -50%);
    margin: 20px 0;
    background: #2c3a99;
    padding: 24px;
    height: 60px;
    width: 606px;
    border-radius: 20px;
    box-shadow: 0 8px 12px rgba(0, 0, 0, 0.6);
}

.banner9-item {
    position: fixed;
    top: 640px;
    left: 50%;
    transform: translate(-50%, -50%);
    margin: 20px 0;
    background: #2c3a99;
    padding: 24px;
    height: 60px;
    width: 606px;
    border-radius: 20px;
    box-shadow: 0 8px 12px rgba(0, 0, 0, 0.6);
}

.banner-item {
    position: relative;
    top: 5px;
    margin: 10px 0;
    background: #1d1d1d;
    padding: 24px;
    height: 90px;
    border-radius: 20px;
    box-shadow: 0 8px 12px rgba(0, 0, 0, 0.6);
}

.foot-item {
    position: relative;
    top: 4px;
    margin: 10px 0;
    background: #1d1d1d;
    padding: 24px;
    height: 120px;
    border-radius: 20px;
    box-shadow: 0 8px 12px rgba(0, 0, 0, 0.6);
}

.foot-item-banner {
    position: relative;
    top: 2px;
    margin-top: 12px;
    margin-bottom: 34px;
    background: #1d1d1d;
    padding: 24px;
    height: 40px;
    border-radius: 20px;
    box-shadow: 0 8px 12px rgba(0, 0, 0, 0.6);
}

.foot-item label {
    font-size: 1.8rem;
    position: relative;
}

.headline {
    text-align: center;
    font-size: 3.4rem;
    transition: font-size 0.2s;
    position: relative;
    top: 18px;
    display: flex;
    justify-content: center;
    /* Zentriert horizontal */
}

.headimage2 {
    text-align: right;
    position: relative;
    top: -64px;
    width: 880px;
}

header {
    text-align: center;
    margin-bottom: 20px;
}

h1 {
    font-size: 35px;
    color: #4caf50;
}

h2 {
    font-size: 56px;
    color: #777777;
}

.ueberschrift {
    position: relative;
    top: 0px;
    left: 4px;
    font-size: 40px;
    width: 368px;
    height: 62px;
    color: #777777;
    background: #333333;
    box-shadow: 0 8px 12px rgba(0, 0, 0, 0.6);
    border-radius: 10px;
    display: flex;
    align-items: center;
    /* Vertikale Zentrierung */
    justify-content: center;
    /* Zentriert horizontal */
}

.ueberschrift2 {
    position: relative;
    width: 368px;
    height: 62px;
    top: -133px;
    left: 540px;
    font-size: 40px;
    color: #777777;
    background: #333333;
    box-shadow: 0 8px 12px rgba(0, 0, 0, 0.6);
    border-radius: 10px;
    display: flex;
    align-items: center;
    /* Vertikale Zentrierung */
    justify-content: center;
    /* Zentriert horizontal */
}

main {
    width: 96%;
    max-width: 1200px;
}

.sliders {
    margin-bottom: 40px;
}

.slider-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 20px;
}

.sliderbottom-item {
    display: flex;
    flex-direction: column;
    align-items: left;
    height: 150px;
    background: #1d1d1d;
    padding: 12px;
    border-radius: 20px;
    box-shadow: 0 8px 12px rgba(0, 0, 0, 0.6);
}

.sliderbottom-item label {
    font-size: 1.8rem;
    position: relative;
    top: -150px;
}

.sliderbottom-item span {
    font-size: 2.4rem;
    font-weight: bold;
    position: relative;
    left: 200px;
    top: -40px;
    width: 80px;
}

.spanzoom {
    font-size: 2.4rem;
    font-weight: bold;
    position: relative;
    left: 300px;
    top: -50px;
    width: 80px;
}

.slider-item {
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: left;
    height: 57px;
    width: 385px;
    background: #1d1d1d;
    padding: 4px;
    border-radius: 20px;
    box-shadow: 0 8px 12px rgba(0, 0, 0, 0.6);
}

.slider-item2 {
    z-index: 1;
    display: flex;
    flex-direction: column;
    position: relative;
    height: 57px;
    width: 385px;
    left: 54px;
    background: #1d1d1d;
    padding: 4px;
    border-radius: 20px;
    box-shadow: 0 8px -31px rgba(0, 0, 0, 0.6);
}

.slider-item3 {
    display: flex;
    flex-direction: column;
    position: relative;
    height: 40px;
    width: 404px;
    top: 0px;
    left: 0px;
    background: #1d1d1d;
    padding: 32px;
    border-radius: 20px;
    box-shadow: 0 8px 12px rgba(0, 0, 0, 0.6);
}

.slider-item3 label {
    font-size: 1.8rem;
    position: relative;
    top: -20px;
}

.slider-item3 span {
    font-size: 2.4rem;
    font-weight: bold;
    position: relative;
    left: 300px;
    top: -90px;
    width: 90px;
}

.schloss-item {
    z-index: 0;
    position: relative;
    left: 434px;
    top: -201px;
    opacity: 0.4;
    width: 30px;
}

.schloss-item2 {
    z-index: 5;
    position: relative;
    left: 428px;
    top: -60px;
    opacity: 0.4;
    width: 30px;
}

.weiter-item {
    position: relative;
    width: 100px;
    left: 810px;
    top: -328px;
    opacity: 0.4;
}

.rueckgaengig-item {
    position: relative;
    width: 100px;
    left: 598px;
    top: -80px;
    opacity: 0.4;
}

.delete-item {
    position: absolute;
    z-index: 4;
    width: 3px;
    top: 11px;
    left: 500px;
    padding: 24px;
    opacity: 1;
}

.zurueck-item {
    position: relative;
    width: 100px;
    left: 705px;
    top: -204px;
    opacity: 0.4;
}

.slider-item label {
    font-size: 1.8rem;
    position: relative;
}

.slider-item span {
    font-size: 2.4rem;
    font-weight: bold;
    position: relative;
    left: 320px;
    top: -130px;
    width: 80px;
}

.slider-item2 label {
    font-size: 1.8rem;
    position: relative;
    text-align: left;
}

.slider-item2 span {
    font-size: 2.4rem;
    font-weight: bold;
    position: relative;
    left: 320px;
    top: -60px;
    width: 80px;
}


.red-placeholder::placeholder {
    font-family: Arial, sans-serif;
    font-size: 2.6rem;
    color: #333333;
    color: #333333;
    ;
}

input[type="range"] {
    -webkit-appearance: none;
    width: 97%;
    height: 5px;
    background: #444444;
    border-radius: 5px;
    outline: none;
    transition: background 0.3s ease;
}

input[type="textarea"] {
    -webkit-appearance: none;
    width: 25%;
    height: 60px;
    background: #1d1d1d;
    border-radius: 2px;
    outline: none;
    font-size: 58px;
    color: blue;
    font: bold;
}



input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 15px;
    height: 35px;
    background: #5a5a5a;
    border-radius: 50%;
    cursor: pointer;
}

input[type="number"]::-moz-range-thumb {
    width: 154px;
    height: 60px;
    background: #888888;
    border-radius: 50%;
    cursor: pointer;
    font-size: 49px;
    font: bold;
}

input[type="number"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 37px;
    height: 135px;
    background: #e22c2c;
    border-radius: 50%;
    cursor: pointer;
    font-size: 49px;
    font: bold;
}

input[type="number"] {
    -webkit-appearance: none;
    width: 25%;
    height: 60px;
    background: #1d1d1d;
    border-radius: 2px;
    outline: none;
    font-size: 58px;
    color: Grey;
    font: bold;
}

input[type="range"] {
    -webkit-appearance: none;
    width: 55%;
    height: 60px;
    background: #222222;
    border-radius: 5px;
    outline: none;
    transition: background 0.3s ease;
    font: bold;
}

/* Diagramm-Bereich */
.charts {
    width: 100%;
    margin-top: -29px;
}

.chart-container {
    margin: 8px 0;
    background: #1d1d1d;
    padding: 10px;
    border-radius: 20px;
    box-shadow: 0 8px 12px rgba(0, 0, 0, 0.6);
}

canvas {
    width: 96% !important;
    height: 280px;
}

/* Footer */
footer {
    margin: 20px 0;
}

button {
    padding: 10px 20px;
    font-size: 3rem;
    color: #999999;
    background-color: #555555;

    border-radius: 20px;
    cursor: pointer;

    width: 70px;
    height: 70px;
}

.button_minus {
    position: relative;
    border-radius: 20px;
    background-color: #333333;
    left: 12px;
    top: -4px;
    color: #ff0000;
}

.zwischentext {
    position: relative;
    border-radius: 20px;
    background-color: #5ff555;
    width: 20px;
    height: 20px;
    left: 164px;
    top: -72px;
    border: none;
    font-weight: bold;
}

.button_plus {
    position: relative;
    border-radius: 20px;
    background-color: #333333;
    left: 317px;
    top: -136px;
    color: #00ff00;
}

.abdeck-item {
    position: absolute;
    z-index: 3;
    top: -14px;
    left: -438px;
    width: 900px;
    height: 50px;
    padding: 16px;
    background: #005500;
    mix-blend-mode: normal;
    border-radius: 20px;
    box-shadow: 0 8px 52px rgba(0, 0, 0, 1);
    justify-content: center;
    /* Zentriert horizontal */
    opacity: 0.8;
}

.bars {
    position: relative;
    z-index: 4;
    background-color: #ff1d1d;
    height: 84px;
    width: 24px;
    left: 12px;
    top: 30px;
    opacity: 0.4;
}

input {
    font-size: 42px;
}

.input-item {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    margin: 20px 0;
    background: #5d5d5d;
    padding: 44px;
    height: 160px;
    width: 720px;
    border-radius: 20px;
}

.menueinhalt {
    position: relative;
    width: 101%;
    height: 66px;
    padding: 12px;
    top: -18px;
    left: -16px;
    background: #7a2a2a;
    border-radius: 20px 20px 0px 0px;
    justify-content: center;
    /* Zentriert horizontal */
}

.menueinhalt2 {
    position: relative;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    padding: 12px;
    justify-content: center;
    /* Zentriert horizontal */
}

.menueinhalt3 {
    position: relative;
    width: 113.2%;
    height: 66px;
    padding: 12px;
    top: -84px;
    left: -56px;
    background: #5d5d5d;
    border-radius: 20px 20px 0px 0px;
    justify-content: center;
    /* Zentriert horizontal */
}

.menueinhalt4 {
    position: relative;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    padding: 12px;
    justify-content: center;
    /* Zentriert horizontal */
}

.letzte_daten {
    position: relative;
    z-index: 3;
    border-radius: 20px;
    width: 60px;
    left: -14px;
    top: -10px;
    color: #ffa200;
    opacity: 0.8;
}

.partner_daten {
    position: relative;
    z-index: 3;
    border-radius: 20px;
    width: 60px;
    left: 140px;
    top: -90px;
    color: #ffa200;
    opacity: 0.8;
}

.info_daten {
    position: relative;
    z-index: 3;
    border-radius: 20px;
    width: 60px;
    left: 410px;
    top: -166px;
    color: #ffa200;
    opacity: 0.8;
    filter: sepia(10%) hue-rotate(206deg) saturate(0%);

}

.erholung-item {
    position: relative;
    z-index: 3;
    width: 60px;
    left: 506px;
    top: -256px;
    opacity: 0.4;
}

.chart-container_overlay {
    position: relative;
    height: 250px;
    margin: 8px 0;
    background: #1d1d1d;
    padding: 10px;
    border-radius: 20px;
    box-shadow: 0 8px 12px rgba(0, 0, 0, 0.6);
}

.volumenbanner {
    position: absolute;
    left: 910px;
    width: 32px;
    height: 280px;
    z-index: 4;
    margin: 0px 0;
    background: #2d2d2d;
    padding: 10px;
    border-radius: 0px 20px 20px 0px;
    box-shadow: 0 8px 12px rgba(0, 0, 0, 0.6);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.temperaturbanner {
    position: absolute;
    left: 910px;
    width: 32px;
    height: 250px;
    z-index: 4;
    margin: 0px 0;
    background: #2d2d2d;
    padding: 10px;
    border-radius: 0px 20px 20px 0px;
    box-shadow: 0 8px 12px rgba(0, 0, 0, 0.6);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

#progress {
    position: relative;
    top: -274px;
    left: 519px;
    background: #000;
    border-radius: 13px;
    height: 20px;
    width: 376px;
    padding: 3px;
}

#progress_after {
    content: "";
    display: block;
    background: #4f40a8;
    width: 0px;
    height: 100%;
    border-radius: 9px;
}

textarea {
    font-family: Arial, sans-serif;
    font-size: 2.6rem;
    color: #333333;
    background-size: contain;
    background: #999999;
    border-radius: 6px;
    border: 0px solid silver;
    outline: none;
    width: 99%;
    height: 400px;
}