.information-container {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.shift-room-form {
    background: white;
    border-radius: 0.75rem;
    padding: 1.5rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.shift-room-form h2 {
    color: #111827;
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid #e5e7eb;
}

.shift-room-form .form-wrapper {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

@media (min-width: 768px) {
    .shift-room-form .form-wrapper {
        flex-direction: row;
    }
}

.shift-room-form .form-wrapper .form-info {
    flex-grow: 1;
}
.shift-room-form .form-wrapper .form {
    flex-shrink: 0;
    max-width: 400px;
}
