.waldmaennle-shifts-form {
    max-width: 800px;
    margin: 20px auto;
    padding: 20px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.waldmaennle-shifts-form h2 {
    color: #1b7bda;
    border-bottom: 2px solid #1b7bda;
    padding-bottom: 10px;
    margin-bottom: 20px;
}

.waldmaennle-shifts-form h3 {
    color: #333;
    margin-top: 20px;
    margin-bottom: 15px;
}

.form-section {
    margin-bottom: 30px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-weight: bold;
    margin-bottom: 5px;
    color: #333;
}

.form-group input[type="text"],
.form-group input[type="email"] {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
}

.form-group input:focus {
    outline: none;
    border-color: #1b7bda;
    box-shadow: 0 0 0 2px rgba(27, 123, 218, 0.1);
}

.event-group {
    background: #f9f9f9;
    padding: 15px;
    border-radius: 5px;
    margin-bottom: 20px;
    border-left: 4px solid #1b7bda;
}

.event-group h4 {
    margin-top: 0;
    margin-bottom: 15px;
    color: #1b7bda;
}

.shift-option {
    background: white;
    padding: 12px;
    margin-bottom: 10px;
    border-radius: 4px;
    border: 1px solid #ddd;
}

.shift-option label {
    display: flex;
    align-items: center;
    cursor: pointer;
    margin: 0;
}

.shift-option input[type="checkbox"] {
    margin-right: 10px;
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.shift-option.shift-full {
    background: #f5f5f5;
    opacity: 0.6;
}

.shift-option.shift-full label {
    cursor: not-allowed;
}

.shift-name {
    font-weight: bold;
    margin-right: 10px;
}

.shift-capacity {
    color: #666;
    font-size: 14px;
}

.full-badge {
    color: #d32f2f;
    font-weight: bold;
}

.shift-description {
    margin: 8px 0 0 28px;
    color: #666;
    font-size: 14px;
}

.form-note {
    color: #666;
    font-size: 14px;
    margin-top: 10px;
}

.form-submit {
    text-align: center;
    margin-top: 30px;
}

.submit-button {
    background: #1b7bda;
    color: white;
    padding: 15px 40px;
    border: none;
    border-radius: 5px;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s;
}

.submit-button:hover {
    background: #0066cc;
}

.waldmaennle-error {
    background: #ffe6e6;
    border-left: 4px solid #d32f2f;
    padding: 15px;
    margin-bottom: 20px;
    border-radius: 4px;
}

.waldmaennle-error p {
    margin: 5px 0;
    color: #d32f2f;
}

.waldmaennle-success {
    background: #e6ffe6;
    border-left: 4px solid #4caf50;
    padding: 15px;
    margin-bottom: 20px;
    border-radius: 4px;
    color: #2e7d32;
}

.waldmaennle-success h3 {
    margin-top: 0;
    color: #2e7d32;
}

.waldmaennle-info {
    background: #e7f3ff;
    border-left: 4px solid #1b7bda;
    padding: 15px;
    margin-bottom: 20px;
    border-radius: 4px;
    color: #1b7bda;
}

@media (max-width: 768px) {
    .waldmaennle-shifts-form {
        padding: 15px;
    }

    .shift-option label {
        flex-direction: column;
        align-items: flex-start;
    }

    .shift-capacity {
        margin-left: 28px;
        margin-top: 5px;
    }
}
