@font-face {
    font-family: 'unzer-light';
    src: url('fonts/unzerlight.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'unzer-bold';
    src: url('fonts/unzerbold.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
}

select.input-field option:disabled {
    color: gray;
    background-color: #f9f9f9; /* optional, für bessere Sichtbarkeit */
}



@media (max-width: 700px) {
    #eingabe {
        font-size: 9px!important; /* Schriftgröße auf mobilen Geräten */
    }
    .input-group-text {
        font-size: 9px!important; /* Schriftgröße auf mobilen Geräten */
    }

    .form-control {
        font-size: 9px!important; /* Schriftgröße auf mobilen Geräten */
    }
    .btn-prim {
        font-size: 9px!important; /* Schriftgröße auf mobilen Geräten */
    }
}

a {
    text-decoration: none;
}

.icon {
    width: 72px;
    height: 32px;
    object-fit: contain;

}

.input-group.custom-input-group {
    display: inline-flex;
    justify-content: center;
}

.main-tool{
    max-width: 1400px; /* Maximale Breite */
    margin: 0 auto; /* Zentrierung */
    padding: 0 20px; /* Etwas Abstand innen */
}
input{
    background-color: white!important;
}

.form-step { display: none; }
.form-step-active { display: block; }

input:focus, textarea:focus, select:focus, button:focus {
    outline: none !important;
    box-shadow: none !important;
}


/*Rechner*/

.chart-container {
    height: 300px; /* Höhere Balken */
}

.form-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.form-container label {
    font-size: 11px;
    margin-bottom: 0;
}

.form-container select,
.form-container input {
    height: 40px;
    width: 100%;
}

.header-color {
    color: #ec407a!important;
}


.container {
    width: 80%;

}
table {
    width: 100%;
    border-collapse: collapse;
    table-layout: fixed; /* Fixierte Breite */
}
th, td {
    padding: 2px;
    border: 1px solid #ddd;
    text-align: left;
    transition: opacity 0.3s ease-in-out; /* Weicher Übergang */
}
th {

    border-radius: 10px;
    padding-left: 15px;
    padding-bottom: 5px;
    padding-top: 5px;
}
/* Standardbreite für alle Spalten */
th, td {
    width: 25%;
}
/* Spalten ausblenden */
.background-pink {
    background-color:#ad1457;
    color: white;
}
.background-grey {
    background-color:#eeeeee!important;
    color: #212121!important;
    font-weight: bold;

}
.background-pink-bright {
    background-color:#fce4ec;
    color: #212121;
    border: none!important;
    font-weight: bold;
}
/* Spalten ausblenden */
.custom-input-group {
    height: 22px!important;
}
.custom-input-group .input-group-text,
.custom-input-group .form-control {
    height: 22px!important;
    padding: 2px 6px;
    line-height: 1;
    border: none!important;

}
.custom-input-group .form-control {
    min-height: 22px!important;
}
/* Spalten ausblenden */
.hidden {
    display: none;
}



.btn-prim {
    background-color: #f8bbd0;
    color: #212121;
    padding: 10px;
    cursor: pointer;
    border-radius: 10px;
    border: #c51162 ;
}

.btn-disab {
    background-color: #e0e0e0; /* hellgrau */
    color: #9e9e9e; /* dunkleres Grau für den Text */
    padding: 10px;
    cursor: not-allowed; /* zeigt an, dass Button deaktiviert ist */
    border-radius: 10px;
    border: 1px solid #bdbdbd; /* dezente graue Umrandung */
    opacity: 0.8; /* leicht transparent für disabled-Effekt */
}


.btn-prim.btn-active {
    background-color: #fce4ec ;
    border: #c51162 !important;
    

}

.btn-prim:hover {
    background-color: #fce4ec ;
    border: #ec407a !important;
}


.btn-highlight {
    animation: highlight 1s ease-in-out;
}

@keyframes highlight {
    0% { box-shadow: 0 0 5px yellow; }
    100% { box-shadow: none; }
}

.btn-disabled {
    background-color: grey;
    cursor: not-allowed;
}

.hidden {
    display: none;
}


.border-none {
    border: none!important;
}


@media (max-width: 767px) {
    #eingabe {
        font-size: 9px!important; /* Schriftgröße auf mobilen Geräten */
    }
}

.custom_input{

    height: 30px!important;
    width: 100%;

    border-radius:20px
}