/* General settings */
body {
    background-color: #F2F2F2;
    color: #2f4f4f;
    font-family: 'Libre Baskerville', sans-serif;
}

#h1, h2, h3 {
#    color: #104e8b;  /* Blue color for headers */
#}

h1 {
    text-align: center;
    color: #000000;
    font-size: 58px;
    font-family: Arial, sans-serif;
    margin-bottom: 20px;
}

h3 {
    text-align: center;
    color: #555;
    font-size: 24px;
    font-family: Arial, sans-serif;
    margin-bottom: 20px;
}

p {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    font-family: Arial, sans-serif;
    color: #333;
    font-size: 16px;
}

/* Card styling */
.card {
    background-color: #ffffff;
    border: 1px solid #e0e0e0;  /* Light grey border */
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    margin: 10px;  /* Even spacing around cards */
}

.card-title {
    color: #000000;
    font-size: 14px;
    text-align: center;
    font-weight: bold;
    margin: 15px;
}

.card-text {
    color: #2f4f4f;
}

.card-class {
    margin-left: 80px;  /* Increase the left margin */
}

/* Button styling */
.button {
    background-color: #3498db ; /* Grün */
    color: white;
    border: none;
    padding: 15px 32px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 21px;
    margin: 4px 2px;
    transition-duration: 0.4s;
    cursor: pointer;
    border-radius: 12px;    
    
    #background-color: #00c5cd;  /* Cyan color for buttons #00c5cd */
    #font-size: 25px;
    #border: none;
    #color: #ffffff;
    #border-radius: 5px;
    #padding: 20px 35px;
    #cursor: pointer;
    #transition: all 0.3s;
}

.button:hover {
    background-color: #00b3b3;  /* Darker cyan on hover */
}

/* Button styling secondary*/
.button-secondary {
    background-color: #00c5cd ; /* Grün */
    color: white;
    border: none;
    padding: 15px 32px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 21px;
    margin: 4px 2px;
    transition-duration: 0.4s;
    cursor: pointer;
    border-radius: 12px;    
    
    #background-color: #00c5cd;  /* Cyan color for buttons #00c5cd */
    #font-size: 25px;
    #border: none;
    #color: #ffffff;
    #border-radius: 5px;
    #padding: 20px 35px;
    #cursor: pointer;
    #transition: all 0.3s;
}

/* Slider styling */
.dccSlider .rc-slider-mark-text {
    color: #000000;  /* Black color for slider marks */
    font-size: 10px;
    text-align: center;
}

.dccSlider .rc-slider-dot {
    border: 1px solid #000000;  /* Black border around slider dots */
}

.rc-slider-mark-text {
    font-size: 16px; /* Größe der Schriftart anpassen */
    margin-top: 0px;
}

/* Stil für die Slider-Titel */
.slider-title {
    font-size: 15px;       /* Schriftgröße anpassen */
    font-weight: bold;     /* Fett, normal oder andere Gewichtung */
    color: #104e8b;        /* Farbe anpassen */
    margin-bottom: 0px;    /* Abstand zum Slider unterhalb */
    margin-top: 0px;    /* Abstand zum Slider oberhalb */
    text-align: center;
}

/* Container für die Slider */
.sliders-container {
    display: flex;
    flex-direction: column;
    gap: 5px;  /* Abstand zwischen den Slidern */
    align-items: left; /* Zentriere den Inhalt horizontal */
}


/* Graph container styling */
.graph {
    background-color: #ffffff;
    border: 1px solid #2f4f4f;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.graph-title {
    color: #104e8b;
    font-size: 14px;
    text-align: center;
    font-weight: bold;
    margin-top: 10px;
}

/* Utility classes */
.text-center {
    text-align: center;
}

.mx-auto {
    margin-right: auto;
    margin-left: auto;
}

.d-block {
    display: block;
}

.result-large {
    font-size: 32px;
    font-weight: bold;
    margin-top: 0px;
    text-align: center;
}

.result-hours {
    font-size: 16px;
    color: white;
    margin-top: 10px;
    text-align: center;
    align-items: center;
    margin-top: 0px;
    display: flex;
}

.unit {
    font-size: 16px; /* Beispielgröße für die Einheit */
    color: gray; /* Beispielfarbe für die Einheit */
    margin-left: 10px; /* Abstand zwischen Wert und Einheit */
    margin-right: 10px; /* Abstand zwischen Wert und Einheit */
    margin-top: 0px;
    text-align: center;
    display: flex;
    align-items: center;
}

.card-title-Matrix {
    font-size: 14px;
    font-weight: bold;
    text-align: center;
    margin-top: 10px;
    color: #ff00ff;
}

.card-title-Linie {
    font-size: 14px;
    font-weight: bold;
    text-align: center;
    margin-top: 10px;
    color: #104e8b;
}

/* Diese Regel sorgt dafür, dass die einzelnen Optionen gleichmäßig verteilt werden.
   Wenn du drei Optionen hast, nimmt jedes Label ca. 33% der Gesamtbreite ein. */
.my-radio label {
    display: inline-block;
    width: 33%;
    text-align: center;
    margin-right: 10px; /* Optional: Abstand zwischen den Optionen */
    white-space: nowrap; /* Verhindert Zeilenumbruch */
}



/* Radiobuttons und deren Beschriftung formatieren */
.my-radio label {
    display: block;
    width: 33%;            /* Bei drei Optionen: jeder nimmt ca. 33% der Breite ein */
    text-align: left;
    margin-right: 10px;
    white-space: nowrap;
    color: #333333;        /* Dunkles Grau für die Beschriftung */
}

/* Standardabstand zwischen Radio-Button und Labeltext */
.my-radio input[type="radio"] {
    margin-right: 25px;
    margin-buttom: 10px;
    transform: scale(1.5);  /* Vergrößert den Radiobutton um das 1.5-fache */
}

/* Wenn der Radiobutton markiert ist, soll er tyrkis (#40E0D0) sein */
.my-radio input[type="radio"]:checked {
    accent-color: #40E0D0;
}

/* Abstand zwischen Titel und Radiobuttons */
.radio-title {
    margin-bottom: 20px;  /* Passe den Wert nach Bedarf an */
    font-size: 20px;
}
