.custom-mix-calculator {
    /* max-width: 800px; */
     color: #333;
 }
 
 .custom-button-group {
     display: flex;
     flex-wrap: wrap;
     gap: 16px;
 }
 
 .custom-button-group button {
     flex: 1 1 calc(33.333% - 20px);
     text-align: center;
     font-weight: 500;
     color: #777;
     background-color: white;
     border: 2px solid #efefef;
     border-radius: 9px;
     padding: 5px 10px;
 }
 
 .custom-button-group button:disabled {
     background-color: #d3d3d3;
     cursor: not-allowed;
 }
 
 .custom-button-group button.active {
     color: #006ca2;
     border-color: #006ca2;
 }
 
 .custom-ratio-container {
     margin-top: 30px;
 }
 
 .custom-application-buttons {
     margin-top: 20px;
     display: flex;
     flex-direction: column; /* Überschrift und Buttons in einer Spalte */
     gap: 16px;
 }
 
 .button-container {
     display: flex; /* Buttons nebeneinander anzeigen */
     gap: 16px; /* Abstand zwischen den Buttons */
 }
 
 .custom-application-buttons button {
     text-align: center;
     font-weight: 500;
     color: #777;
     background-color: white;
     border: 2px solid #efefef;
     border-radius: 9px;
     min-width: 128px; /* Kleinere Breite für Buttons nebeneinander */
     padding: 5px 10px;
     flex: 1 1 auto;  /* Macht die Buttons flexibel */
 }
 
 .custom-application-buttons .active {
     color: #006ca2;
     border-color: #006ca2;
 }
 
 .headline {
     text-transform: uppercase;
     font-weight: 700;
 }
 
 .custom-ratio-text {
     font-weight: 500;
     font-size: 1.2em;
     text-transform: uppercase;
 }
 
 .custom-result-text {
     font-size: 1.5em;
     font-weight: 700;
 }
 
 .custom-result {
     margin-top: 60px;
     padding: 20px;
     background-color: white;
     border: 3px solid #006ca2;
     text-align: center;
     border-radius: 9px;
     font-weight: 700;
 }
 
 .custom-mix-grid {
     display: grid;
     grid-template-columns: 1fr 1fr; /* Zwei gleich große Spalten */
     gap: 60px;
     margin: 0 auto;
     align-items: center;
 }
 
 .custom-graphic-container {
     display: flex;
     justify-content: center;
     align-items: center;
 }
 
 .custom-graphic {
     max-width: 80%;
     height: auto;
     border-radius: 9px;
 }
 
 /* Responsive: Auf kleinen Bildschirmen (bis 768px) sollen die Spalten untereinander angezeigt werden */
 @media (max-width: 768px) {
     .custom-mix-grid {
         grid-template-columns: 1fr; /* Eine Spalte */
     }
 }
 
 @media (max-width: 768px) {
 .custom-graphic-container {
     display: none;
 }
 }
 
 .custom-slider-container {
     margin-top: 30px;
     text-align: left;
     position: relative;
 }
 
 .custom-slider {
     width: 100%;
     accent-color: #006ca2;
     -webkit-appearance: none;
     appearance: none;
     height: 6px; /* Höhe des Sliders */
     background: #efefef;;
     border-radius: 9px;
     outline: none;
     align-items: center;
     border: none;
 }
 
 /* Webkit für Chrome, Safari, Edge */
 .custom-slider::-webkit-slider-thumb {
     -webkit-appearance: none;
     appearance: none;
     width: 20px; /* Größe des Buttons (Daumens) */
     height: 20px;
     background: #006ca2;
     border-radius: 50%;
     cursor: pointer;
     
 }
 
 /* Firefox */
 .custom-slider::-moz-range-thumb {
     width: 18px; /* Größe des Buttons (Daumens) */
     height: 18px;
     background: #006ca2;
     border-radius: 50%;
     cursor: pointer;
     border: none;
 }
 
 /* IE */
 .custom-slider::-ms-thumb {
     width: 20px; /* Größe des Buttons (Daumens) */
     height: 20px;
     background: #006ca2;
     border-radius: 50%;
     cursor: pointer;
 }
 
 
 
 @media (max-width: 768px) {
     .custom-slider::-webkit-slider-thumb {
     width: 26px; /* Größe des Buttons (Daumens) */
     height: 26px;
 }
     .custom-slider::-moz-range-thumb {
     width: 24px; /* Größe des Buttons (Daumens) */
     height: 24px;
 }
     .custom-slider::-ms-thumb {
     width: 26px; /* Größe des Buttons (Daumens) */
     height: 26px;
 }
 }
 
 .custom-slider-marks {
     display: flex;
     justify-content: space-between;
     position: absolute;
     width: 100%;
     margin-top: 15px;
     font-size: 0.9em;
 }