.dlc-band-form-wrapper {
    background: #0e1720;
    padding: 28px 24px 32px;
    border-radius: 16px;
    color: #ffffff;
    position: relative;
    width:100%;
    margin: 0 auto 32px;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.55);
}

.dlc-band-form-wrapper a {
    color: #de3850;
    text-decoration: none;
}

.dlc-band-form-wrapper a:hover {
    text-decoration: underline;
}

.dlc-band-form {
    margin: 0;
}

/* Form Header */
.dlc-form-header {
    margin-bottom: 16px;
}

.dlc-form-title {
    margin: 0 0 4px;
    font-size: 22px;
    font-weight: 600;
}

.dlc-form-subtitle {
    margin: 0;
    font-size: 13px;
    color: #9ca3af;
}

/* Status Messages */
.dlc-status {
    margin-bottom: 20px;
    padding: 12px 16px;
    border-radius: 8px;
    font-size: 14px;
}

.dlc-status-success {
    background: #123524;
    color: #a3e9b1;
}

.dlc-status-error {
    background: #321018;
    color: #ff99aa;
}

/* Layout */
.dlc-grid {
    display: flex;
    gap: 32px;
    margin-top: 8px;
}

.dlc-col {
    flex: 1;
}

.dlc-field {
    margin-bottom: 16px;
}

.dlc-field label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 6px;
    color: #e5e7eb;
}

/* Inputs */
.dlc-field input[type="text"],
.dlc-field input[type="email"],
.dlc-field input[type="url"],
.dlc-field select,
.dlc-field textarea {
    width: 100%;
    padding: 10px 12px;
    border-radius: 10px;
    border: 1px solid #1f2933;
    background: #0e1720;
    color: #ffffff;
    font-size: 14px;
    box-sizing: border-box;
    transition: border-color 0.15s ease, box-shadow 0.15s ease, background-color 0.15s ease;
}

.dlc-field input::placeholder,
.dlc-field textarea::placeholder {
    color: #6b7280;
}

.dlc-field input:focus,
.dlc-field select:focus,
.dlc-field textarea:focus {
    outline: none;
    border-color: #de3850;
    box-shadow: 0 0 0 1px #de3850;
    background-color: #111827;
}

/* Event other field */
.dlc-event-other {
    display: none;
}
.dlc-event-other.is-visible {
    display: block;
}

/* Repeatable rows */
.dlc-repeat-row {
    display: flex;
    gap: 8px;
    margin-bottom: 8px;
}

.dlc-repeat-row input[type="url"],
.dlc-repeat-row select {
    flex: 1;
}

/* Minus Button */
.dlc-remove-row {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: none;
    background: #b91c1c; /* Signalfarbe Rot */
    color: #ffffff;      /* Minus weiß */
    font-size: 18px;
    line-height: 1;
    cursor: pointer;
    align-self: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.dlc-remove-row:hover,
.dlc-remove-row:focus {
    background: #b91c1c; /* kein pinker Hover, bleibt gleich */
    outline: none;
}

/* Add Row link */
.dlc-add-row-wrapper {
    text-align: right;
    margin-top: 4px;
}

.dlc-add-row-wrapper button {
    border: none;
    background: none;
    color: #de3850;
    cursor: pointer;
    font-size: 14px;
    padding: 0;
}

.dlc-add-row-wrapper button:hover {}

/* DSGVO */
.dlc-gdpr label {
    font-size: 13px;
    line-height: 1.5;
    color: #d1d5db;
}

.dlc-gdpr input[type="checkbox"] {
    margin-right: 6px;
}

/* Sticky Submit Bar */
.dlc-submit-bar {
    position: static;
    margin-top: 18px;
    padding-top: 18px;
    border-top: 1px solid #1f2933;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.dlc-submit-btn {
    background: #b91c1c;
    border: none;
    color: #ffffff;
    padding: 10px 24px;
    border-radius: 999px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    box-shadow: none;
}

.dlc-submit-btn:hover {}

.dlc-inline-status {
    font-size: 12px;
    color: #9ca3af;
}

/* Mobile Sticky */
@media (max-width: 768px) {
    .dlc-grid {
        flex-direction: column;
        gap: 20px;
    }

    .dlc-band-form-wrapper {
        padding: 20px 16px 90px;
        border-radius: 0;
        margin: 0 -16px 0;
        max-width: none;
        box-shadow: none;
    }

    .dlc-submit-bar {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        padding: 10px 16px;
        background: linear-gradient(180deg, rgba(14,23,32,0.96), #0e1720);
        box-shadow: 0 -6px 20px rgba(0,0,0,0.65);
        z-index: 999;
    }

    .dlc-submit-bar .dlc-inline-status {
        flex: 1;
        text-align: right;
        max-width: 60%;
    }
}

/* Admin Badges */
.dlc-badge {
    display: inline-block;
    padding: 2px 8px;
    border-radius: 999px;
    font-size: 11px;
    color: #fff;
}

.dlc-badge-metalfest {
    background: #2563eb;
}

.dlc-badge-aufhoisln {
    background: #16a34a;
}

.dlc-badge-other {
    background: #6b7280;
}
