.wci-form-container {
    margin: 0 auto;
    padding: 20px;
    background-color: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.wci-form-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 15px;
}

.wci-form-field {
    flex: 1;
    margin-right: 10px;
}

.wci-form-field:last-child {
    margin-right: 0;
}

.wci-form-field label {
    display: block;
    margin-bottom: 5px;
}

.wci-form-field input[type="text"] {
    width: 100%;
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 4px;
}


.wci-step {
    margin-bottom: 20px;
}

.wci-step.active-step {
    display: block;
}

label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}

input[type="text"],
input[type="email"] {
    width: 100%;
    padding: 8px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.wci-button {
    background-color: #4CAF50;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.wci-button:hover {
    background-color: #45a049;
}

.wci-nav-buttons {
    text-align: right;
}

.next-step {
    justify-content: flex-end;
    float: right;
    margin-left: auto;
}

.previous-step {
    justify-content: flex-start;
    float: left;
}

.wci-progress-container {
    margin-bottom: 20px;
}

.wci-progressbar {
    list-style: none;
    padding: 0;
    display: flex;
    justify-content: space-between;
    margin: 0;
}

.wci-progressbar li {
    width: 20%; /* Anzahl der Schritte entsprechend anpassen */
    text-align: center;
    font-size: 0.9em;
    position: relative;
}

.wci-progressbar li:before {
    content: attr(data-step); /* Zeigt den Schritt aus dem data-step Attribut an */
    width: 25px;
    height: 25px;
    line-height: 25px;
    border: 1px solid #ccc;
    border-radius: 50%;
    background-color: #f9f9f9;
    color: #333;
    display: block;
    text-align: center;
    margin: 0 auto 5px;
}

.wci-progressbar li.active:before {
    border-color: #0073aa;
    background-color: #0073aa;
    color: white;
}
.wci-form-field select {
    width: 100%;
    padding: 8px;
    border: 1px solid #ddd;
    border-radius: 4px;
    background-color: #f2f2f2;
    box-shadow: inset 0 1px 3px rgba(0,0,0,0.1);
    font-size: 16px;
}

.wci-form-field select:focus {
    border-color: #5b9dd9;
    box-shadow: 0 0 2px rgba(30,140,190,.8);
    outline: none;
}

.wci-form-field select::-ms-expand {
    display: none;
}

.imgradio {
    text-align: center;
}

.imgradio label > input + img {
    cursor: pointer;
    border: 2px solid transparent;
    opacity: 0.4;
}

.imgradio label > input:checked + img {
    border: 2px solid #0073aa;
    border-radius: 15px;
    background-color: #0073aa;
    opacity: 1;
}

img {
    opacity: 1;
    transition: opacity 1s;
}

input.hideradio {
    visibility: hidden;
    position: absolute;
}

.toggle-switch {
display: flex;
align-items: center;
margin-bottom: 10px;
}

.toggle-input {
opacity: 0;
width: 0;
height: 0;
}

.slider {
position: relative;
cursor: pointer;
width: 50px; /* Sliderbreite anpassen */
height: 25px; /* Sliderhöhe anpassen */
background-color: #ccc;
border-radius: 25px; /* Radius an Sliderhöhe anpassen */
transition: .4s;
margin-right: 10px;
}

.slider:before {
position: absolute;
content: "";
height: 21px; /* Höhe des inneren Kreises anpassen */
width: 21px; /* Breite des inneren Kreises anpassen */
left: 2px; /* Abstand von links anpassen */
bottom: 2px; /* Abstand von unten anpassen */
background-color: white;
transition: .4s;
border-radius: 50%;
}

.toggle-input:checked + .slider {
background-color: #2196F3;
}

.toggle-input:focus + .slider {
box-shadow: 0 0 1px #2196F3;
}

.toggle-input:checked + .slider:before {
transform: translateX(24px); /* Bewegung des inneren Kreises anpassen */
}

/* Stil für den Text neben dem Schalter */
.toggle-switch label {
white-space: nowrap; /* Verhindert das Umbruch des Textes */
}

span.wci-toggle-description {
    min-width: 50%;
}

.dashboard-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 10px; /* Abstand zwischen den Kacheln */
    padding: 10px; /* Optionaler Abstand um das Grid herum */
}

.grid-item {
    background-color: #f0f0f0; /* Hintergrundfarbe der Kachel */
    padding: 20px; /* Innenabstand */
    border: 1px solid #ddd; /* Rand der Kachel */
    text-align: center; /* Textausrichtung */
}

/* Für kleinere Bildschirme (z.B. Smartphones) */
@media (max-width: 600px) {
    .dashboard-grid {
        grid-template-columns: 1fr; /* Eine Kachel pro Zeile */
    }
}

#todo-items {
    margin: 0;
}

#todo-items li {
    list-style: none; /* Entfernt den Standard-List-Punkt */
    margin-bottom: 10px;
    position: relative; /* Für die Positionierung des Hakens */
}

#todo-items li.done {
    color: #45a049;
}

#todo-items li.done::after {
    content: "✔"; /* Haken-Symbol */
    position: absolute;
    right: 10px; /* Positionierung des Hakens */
    top: 50%;
    transform: translateY(-50%);
}
