/* public/assets/css/style.css */
body { font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; background: #f4f7f6; color: #333; line-height: 1.6; margin: 0; padding-bottom: 40px; }

/* Container & Layout */
.container { max-width: 800px; margin: 0 auto; background: #fff; padding: 40px; border-radius: 8px; box-shadow: 0 4px 15px rgba(0,0,0,0.1); }
.header-logo { max-height: 100px; display: block; margin: 0 auto 20px auto; }
h1 { text-align: center; color: #2c3e50; margin-bottom: 30px; margin-top: 0; }

/* Formulare */
.form-group { margin-bottom: 20px; }
label { display: block; margin-bottom: 8px; font-weight: 600; color: #555; }
input[type="text"], input[type="number"], select, textarea { 
    width: 100%; padding: 12px; border: 1px solid #ddd; border-radius: 4px; 
    box-sizing: border-box; font-size: 16px; transition: border 0.2s;
}
input:focus, select:focus { border-color: var(--primary-color); outline: none; }

/* Checkbox Groups */
.checkbox-group { display: flex; align-items: center; background: #f9f9f9; padding: 10px; border-radius: 4px; border: 1px solid #eee; }
.checkbox-group input { width: auto; margin-right: 15px; transform: scale(1.3); cursor: pointer; }
.checkbox-group label { margin-bottom: 0; cursor: pointer; }

/* Buttons */
.btn { display: block; width: 100%; padding: 15px; font-size: 18px; border-radius: 4px; cursor: pointer; border: none; font-weight: bold; text-align: center; text-decoration: none; color: white; transition: background 0.2s; }
.btn-primary { background-color: var(--primary-color); }
.btn-primary:hover { background-color: var(--primary-dark); }

/* Utility & Messages */
.error-msg { background: #fee; color: #c00; padding: 15px; border-radius: 4px; margin-bottom: 20px; border: 1px solid #fcc; text-align: center; }
.success-msg { background: #d4edda; color: #155724; padding: 15px; border-radius: 4px; margin-bottom: 20px; border: 1px solid #c3e6cb; }
.preview-banner { background: #ffc107; color: #000; padding: 10px; text-align: center; font-weight: bold; margin-bottom: 20px; border-radius: 4px; }
.required-star { color: red; margin-left: 3px; }

/* Kommentare & Trenner */
.section-divider { margin: 40px 0 20px 0; border: 0; border-top: 2px solid #eee; }
.comment-box { background: #f8f9fa; border-left: 5px solid var(--primary-color); padding: 15px; margin-bottom: 25px; border-radius: 0 4px 4px 0; }
.comment-title { margin: 0; font-size: 1.15em; color: #2c3e50; }
.comment-text { margin: 8px 0 0 0; font-size: 0.95em; color: #666; }

/* Readonly Fields (Berechnungen) */
input[readonly] { background-color: #f0f0f0; color: #666; cursor: not-allowed; }

/* Landing Page Search */
.landing-box { text-align: center; padding: 20px; }
.id-input-group { display: flex; justify-content: center; max-width: 400px; margin: 20px auto; }
.id-input-group input { border-radius: 4px 0 0 4px; border-right: none; text-align: center; }
.btn-search { background: var(--primary-color); color: white; border: none; padding: 12px 20px; border-radius: 0 4px 4px 0; cursor: pointer; font-weight: bold; }