/* ── Admin create-ticket form — same visual language as the customer dialog ── */
#admin-ticket-create-container { min-height: 640px; }

.ticket-create-field-label {
    font-size: 0.72rem;
    color: var(--rz-text-tertiary-color);
    letter-spacing: 0.04em;
    text-transform: uppercase;
    line-height: 1;
}

/* Equalise the 3-column row so Type / Category / Priority render at the same
   height (RadzenDropDown's .rz-dropdown + CategoryTreePicker's .ctp-trigger). */
#admin-ticket-create-container .rz-dropdown,
#admin-ticket-create-container .ctp-trigger {
    min-height: 38px;
}

.atc-skel-wrap {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 0.25rem 0 0;
}

.atc-skel-row {
    display: grid;
    gap: 1rem;
}

.atc-skel-row-3 { grid-template-columns: 1fr 1fr 1fr; }

.atc-skel-field {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.atc-skel-buttons {
    display: flex;
    gap: 0.5rem;
    justify-content: flex-end;
    margin-top: 0.5rem;
}

.atc-watcher-list {
    border: 1px solid var(--rz-border-color);
    border-radius: 6px;
    max-height: 160px;
    overflow-y: auto;
}

.atc-watcher-row {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.45rem 0.75rem;
    cursor: pointer;
    transition: background 0.15s;
}

.atc-watcher-row:hover { background: var(--rz-base-background-color); }
.atc-watcher-row--added { background: color-mix(in srgb, var(--rz-success) 8%, transparent); }

.atc-watcher-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem;
    margin-top: 0.25rem;
}

.atc-watcher-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    padding: 0.2rem 0.55rem;
    background: color-mix(in srgb, var(--rz-primary) 12%, transparent);
    border-radius: 999px;
    font-size: 0.8rem;
    color: var(--rz-primary);
}

.atc-watcher-chip-remove {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    line-height: 1;
    color: var(--rz-primary);
    padding: 0;
    margin-left: 0.1rem;
}
