/* Bescheidmodul 2.0 - Gestaltung analog Sportgerichts-Datenbank */
body { margin: 0; font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; background-color: #f5f7fa; color: #102a43; }
.page { min-height: 100vh; box-sizing: border-box; padding: 24px 32px 48px; position: relative; }
.logo { position: absolute; top: 16px; right: 16px; }
.logo img { width: 90px; height: 90px; object-fit: contain; }
header { margin-bottom: 20px; }
header h1 { margin: 0; font-size: 24px; }
header p { margin: 4px 0 0 0; font-size: 14px; color: #627d98; }
nav.topnav { margin: 0 0 12px 0; padding: 10px 14px; background: #ffffff; border-radius: 10px; box-shadow: 0 2px 8px rgba(15,23,42,0.06); display: flex; flex-wrap: wrap; gap: 4px 18px; align-items: center; }
nav.topnav a { color: #0b3c5d; text-decoration: none; font-size: 14px; font-weight: 500; }
nav.topnav a:hover { text-decoration: underline; }
nav.topnav .right { margin-left: auto; color: #627d98; font-size: 13px; }
nav.topnav .right a { color: #d64545; }
.messages { margin: 0 0 16px 0; padding: 0; }
.messages li { list-style: none; margin-bottom: 6px; padding: 10px 12px; border-radius: 6px; font-size: 14px; }
.messages li.success { background-color: #e3fbe3; color: #1e5b2e; }
.messages li.error { background-color: #fdeaea; color: #a42525; }
.messages li.info { background-color: #d8e2ff; color: #102a43; }
.card { background: #ffffff; border-radius: 12px; box-shadow: 0 4px 14px rgba(15,23,42,0.08); padding: 22px 24px; margin-bottom: 18px; }
h2.section { font-size: 18px; margin-top: 0; color: #0b3c5d; }
.menu-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 16px; margin-top: 8px; }
.menu-card-link { text-decoration: none; color: inherit; }
.menu-card { background-color: #ffffff; border-radius: 12px; box-shadow: 0 4px 14px rgba(15,23,42,0.08); overflow: hidden; display: flex; flex-direction: column; height: 140px; transition: transform 0.1s ease, box-shadow 0.1s ease; }
.menu-card:hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(15,23,42,0.12); }
.menu-card-image { flex: 2; background-size: cover; background-position: center; }
.menu-card-label { flex: 1; padding: 10px 12px; background-color: #0b3c5d; color: #ffffff; display: flex; align-items: center; justify-content: center; font-size: 15px; text-align: center; }
table.data { width: 100%; border-collapse: collapse; background: #fff; border-radius: 10px; overflow: hidden; box-shadow: 0 2px 8px rgba(15,23,42,0.06); }
table.data th { background: #f1f5f9; text-align: left; font-size: 12px; text-transform: uppercase; color: #627d98; padding: 10px 12px; }
input[type="text"], input[type="email"], input[type="password"], input[type="date"], input[type="time"], input[type="datetime-local"], input[type="number"], textarea, select { width: 100%; box-sizing: border-box; padding: 10px 12px; border-radius: 6px; border: 1px solid #cbd2d9; font-size: 14px; font-family: inherit; }
input:focus, textarea:focus, select:focus { outline: none; border-color: #2680c2; box-shadow: 0 0 0 1px #2680c2; }
.btn { display: inline-block; background-color: #2680c2; color: #ffffff; border: none; border-radius: 6px; padding: 9px 16px; font-size: 14px; cursor: pointer; text-decoration: none; }
.btn:hover { background-color: #186faf; }
.btn-secondary { background-color: #627d98; }
.btn-secondary:hover { background-color: #4a6a8a; }
.btn-danger { background-color: #d64545; }
.btn-danger:hover { background-color: #b93a3a; }
.btn-success { background-color: #2f8f4e; }
.btn-success:hover { background-color: #267a41; }
.btn-lg { padding: 14px 28px; font-size: 16px; font-weight: 600; }
.badge { display: inline-block; padding: 2px 10px; border-radius: 999px; font-size: 12px; font-weight: 600; }
.badge-green { background: #e3fbe3; color: #1e5b2e; }
.badge-red { background: #fdeaea; color: #a42525; }
.badge-amber { background: #fff4d6; color: #8a6d1a; }
.badge-blue { background: #d8e2ff; color: #0b3c5d; }
.hint { font-size: 12px; color: #627d98; }
.wizard-steps { display: flex; gap: 8px; margin: 0 0 16px 0; padding: 0; list-style: none; flex-wrap: wrap; }
.wizard-steps li { font-size: 13px; padding: 6px 12px; border-radius: 999px; background: #ffffff; color: #627d98; box-shadow: 0 1px 4px rgba(15,23,42,0.06); }
.wizard-steps li.active { background: #0b3c5d; color: #ffffff; font-weight: 600; }
.frage-block { margin-bottom: 16px; padding: 16px 18px; border: 1px solid #e1e8ed; border-left: 5px solid #2680c2; background: #ffffff; border-radius: 0 8px 8px 0; }
.frage-text { font-weight: 600; display: block; margin-bottom: 8px; }
.option-label { display: block; margin: 6px 0; cursor: pointer; padding: 6px; border-radius: 4px; }
.option-label:hover { background: #f0f7ff; }
pre.bescheid { white-space: pre-wrap; background: #f8fafc; padding: 16px; border: 1px solid #e2e8f0; border-radius: 8px; font-family: inherit; font-size: 14px; line-height: 1.6; }
@media (max-width: 600px) { .page { padding: 16px 14px 40px; } .logo { position: static; margin-bottom: 8px; } nav.topnav .right { margin-left: 0; } }
table.data td { padding: 10px 12px; border-top: 1px solid #e2e8f0; font-size: 14px; vertical-align: top; }