.field-container input,
.field-container textarea,
.field-container select {
    background: transparent;
    border: none;
    outline: none;
    font-family: 'Quantico', sans-serif;
    font-size: 1rem;
    color: #0F172A;
    width: 100%;
    resize: none;
}
.field-container.unified-combo-box {
    z-index: 999;
    padding: 0;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
}
.unified-combo-box select {
    flex: 1;
    padding: 16px 25px;
    cursor: pointer;
    background: transparent;
    border: none;
    outline: none;
    font-family: 'Quantico', sans-serif;
    font-size: 1rem;
    color: #0F172A;
    border-radius: 0;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    text-align: center;
    text-align-last: center;
}
.unified-combo-box select:first-of-type {
    border-right: 0 solid rgba(15, 23, 42, 0.2);
}
.combo-divider {
    width: 1px;
    height: 30px;
    background: rgba(15, 23, 42, 0.2);
    margin: 0;
}
.field-container {
    background: rgba(255, 255, 255, 0.0);
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow:
            inset 0 1px 1px rgba(255, 255, 255, 0.6),
            0 4px 12px rgba(0, 0, 0, 0.1);
    padding: 16px 25px;
    display: flex;
    align-items: center;
    position: relative;
    z-index: 10;
}
.form-field {
    display: flex;
    flex-direction: column;
    margin-bottom: 50px;
    position: relative;
}
.form-field:focus-within,
.form-field:has(.custom-multi-select.active) {
    z-index: 9999 !important;
}
arrow-header {
    position: relative;
    z-index: 1;
}
.form-field:not(.layout-side) {
    margin-left: 60px;
    width: calc(100% - 60px);
}
.form-field.layout-side {
    flex-direction: row;
    align-items: stretch;
}
.form-field.layout-side arrow-header {
    width: 120px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-self: stretch;
}
.form-field.layout-side arrow-header .arrow-header-vertical {
    flex: 1;
}
.layout-side .field-container {
    flex-grow: 1;
}
.form-field arrow-header[direction="horizontal"]:first-child {
    margin-bottom: 10px;
}
.field-container.drop-zone {
    min-height: 300px;
    align-items: center;
    justify-content: center;
    padding: 0;
    background: rgba(255, 255, 255, 0.0);
}



.custom-multi-select {
    flex: 1;
    position: relative;
    cursor: pointer;
    font-family: 'Quantico', sans-serif;
    font-size: 1rem;
    color: #0F172A;
    text-align: center;
}
.select-display {
    padding: 16px 25px;
    width: 100%;
    user-select: none;
}
.custom-multi-select.disabled .select-display {
    opacity: 1;
    cursor: not-allowed;
}
.select-dropdown {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    max-height: 250px;
    overflow-y: auto;
    background: var(--background-secondary);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--border-color);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    z-index: 100;
    text-align: left;
}
.custom-multi-select.active .select-dropdown {
    display: block;
}
.custom-option {
    padding: 12px 20px;
    cursor: pointer;
    border-bottom: 1px solid rgba(0, 0, 0, 1);
    transition: background 0.2s;
}
.custom-option:hover {
    background: rgba(var(--glass-white), 1);
}
.custom-option.selected {
    background: rgba(var(--glass-white), 1);
    font-weight: 700;
    position: relative;
}
.custom-option.selected::after {
    content: '✓';
    position: absolute;
    right: 20px;
}

.drop-zone-trigger {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
    z-index: 999;
    display: block;
    background: rgba(0, 0, 0, 0);
}
.drop-zone {
    position: relative;
}
