.tfrm-inline-form {
    background: #f7f7f7;
    padding: 18px 15px;
    border-radius: 8px;
    margin-top: 15px;
    border: 1px solid #ddd;
}

.tfrm-field {
    margin-bottom: 15px;
}

.tfrm-label {
    display: block;
    font-weight: 600;
    margin-bottom: 5px;
    font-size: 15px;
}

.tfrm-field input[type="text"] {
    width: 100%;
    padding: 8px 10px;
    border-radius: 5px;
    border: 1px solid #ccc;
    font-size: 15px;
}

.tfrm-section-label {
    margin-top: 25px;
    margin-bottom: 10px;
    font-weight: 700;
    font-size: 16px;
    border-top: 1px solid #ddd;
    padding-top: 15px;
}

.tfrm-button-row {
    margin-top: 10px;
}

/* Allgemeine Textfelder in der Inline-Form */
.tfrm-inline-form input[type="text"] {
    width: 100%;            /* volle Breite */
    max-width: 350px;       /* maximale Breite */
    height: 42px;           /* Höhe */
    padding: 8px 12px;      /* Innenabstand */
    font-size: 16px;        /* Schriftgröße */
    border: 1px solid #ccc; /* Rahmen */
    border-radius: 6px;     /* abgerundete Ecken */
    box-sizing: border-box; /* verhindert Layout-Sprünge */
    margin-bottom: 12px;    /* Abstand nach unten */
}

/* Fokus-Effekt */
.tfrm-inline-form input[type="text"]:focus {
    border-color: #0073aa;
    box-shadow: 0 0 4px rgba(0, 115, 170, 0.4);
    outline: none;
}
/* Button-Grundstil */
.tfrm-inline-form button {
    display: inline-block;
    padding: 10px 18px;
    margin: 6px 6px 0 0;
    font-size: 15px;
    font-weight: 600;
    border-radius: 6px;
    border: none;
    cursor: pointer;
    transition: 0.2s ease;
}

/* Speichern */
.tfrm-save-btn {
    background-color: #2d8a34;
    color: white;
}
.tfrm-save-btn:hover {
    background-color: #256f2b;
}

/* Stornieren */
.tfrm-cancel-btn {
    background-color: #c62828;
    color: white;
}
.tfrm-cancel-btn:hover {
    background-color: #a61f1f;
}

/* Schließen */
.tfrm-close-btn {
    background-color: #777;
    color: white;
}
.tfrm-close-btn:hover {
    background-color: #555;
}

/* Button-Reihe */
.tfrm-button-row {
    margin-top: 15px;
}

/* Buttons in der Tabelle */
.tfrm-table .tfrm-edit-btn {
    display: inline-block;
    padding: 8px 16px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 6px;
    border: none;
    cursor: pointer;
    background-color: #0073aa;
    color: white;
    transition: 0.2s ease;
}

.tfrm-table .tfrm-edit-btn:hover {
    background-color: #005f8d;
}
.tfrm-seatlist {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
}

.tfrm-seat-pill {
    background: #e5f0ff;
    border-radius: 12px;
    padding: 2px 8px;
    font-size: 12px;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.tfrm-seat-pill .tfrm-seat-remove {
    border: none;
    background: transparent;
    cursor: pointer;
    font-size: 14px;
    line-height: 1;
}
