/**
 * Styling für Veranstaltungen-Formular
 * (Ergebnisliste verwendet ext_scripts.css für konsistentes Design)
 */

/* Formular Container */
.veranstaltungen-form-container {
    max-width: 800px;
    margin: 2rem auto;
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.veranstaltungen-form-container h2 {
    margin-top: 0;
    margin-bottom: 1.5rem;
    color: #6B9F2E; /* DRC-Grün */
    font-size: 1.8rem;
    border-bottom: 2px solid #8AC640;
    padding-bottom: 8px;
}

.veranstaltungen-form-container .info-text {
    margin-bottom: 1rem;
    color: #666;
    line-height: 1.6;
}

.veranstaltungen-form-container .info-text a {
    color: #6B9F2E;
    text-decoration: underline;
}

.veranstaltungen-form-container .info-text a:hover {
    color: #4A7C1F;
    text-decoration: underline;
}

/* Formular Styling */
.veranstaltungen-form {
    margin-top: 2rem;
}

.veranstaltungen-form .form-group {
    margin-bottom: 1.5rem;
}

.veranstaltungen-form label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #333;
}

.veranstaltungen-form .form-control {
    width: 100%;
    padding: 0.75rem;
    font-size: 1rem;
    border: 1px solid #ced4da;
    border-radius: 4px;
    background-color: #fff;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.veranstaltungen-form .form-control:focus {
    border-color: #80bdff;
    outline: 0;
    box-shadow: 0 0 0 0.2rem rgba(0,123,255,.25);
}

.veranstaltungen-form .btn {
    display: inline-block;
    padding: 0.75rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.15s ease-in-out;
}

.veranstaltungen-form .btn-primary {
    background-color: #6B9F2E; /* DRC-Grün */
    color: #fff;
}

.veranstaltungen-form .btn-primary:hover {
    background-color: #4A7C1F; /* Dunkleres DRC-Grün */
}

.veranstaltungen-form .btn-primary:active {
    background-color: #3A6C0F;
}

/* Zurück-Button in der Ergebnisliste */
.zuechter-liste-container .back-link {
    margin: 1.5rem 0;
}

.zuechter-liste-container .btn-secondary {
    background-color: #6c757d;
    color: #fff;
    padding: 0.5rem 1.5rem;
    text-decoration: none;
    border-radius: 4px;
    display: inline-block;
    transition: background-color 0.15s ease-in-out;
}

.zuechter-liste-container .btn-secondary:hover {
    background-color: #545b62;
}

/* Alert-Boxen */
.alert {
    padding: 1rem;
    margin: 1rem 0;
    border: 1px solid transparent;
    border-radius: 4px;
}

.alert-danger {
    color: #721c24;
    background-color: #f8d7da;
    border-color: #f5c6cb;
}

.alert-warning {
    color: #856404;
    background-color: #fff3cd;
    border-color: #ffeeba;
}

.alert-info {
    color: #004085;
    background-color: #cce5ff;
    border-color: #b8daff;
}

/* Responsive Design */
@media (max-width: 768px) {
    .veranstaltungen-form-container {
        padding: 1rem;
        margin: 1rem;
    }
}
