.schichtbuch {
    margin-top: 20px;
}

.form-group {
    margin-bottom: 10px;
}

button {
    margin-top: 10px;
}

ul {
    list-style-type: none;
    padding-left: 0;
}

li {
    margin-bottom: 5px;
}
.schicht-raster {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 Spalten */
    gap: 20px; /* Abstand zwischen den Schichten */
}

.schicht-row {
    display: flex;
    justify-content: space-between;
}

.schicht-item {
    border: 1px solid #ff0000;
    padding: 10px;
    border-radius: 5px;
    background-color: #b6b6b69e;
    color: rgb(0, 0, 0);
}

.schicht-item h5 {
    margin-top: 0;
}

.schicht-item .form-group {
    margin-bottom: 10px;
}

.schicht-item button {
    margin-top: 10px;
}
