/* Wrapper */
.ts-wrapper-0be29d94 {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

/* Form */
.ts-form-0be29d94 {
    width: 100%;
}

/* Filter Bar — flexbox row with wrapping */
.ts-filters-group-0be29d94 {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    background: transparent;
    width: 100%;
    border-radius: 4px;
    gap: 0;
}

/* Field Cells */
.ts-field-cell-0be29d94 {
    flex: 1 1 0%;
    display: flex;
    align-items: center;
    min-height: 54px;
    position: relative;
    background-color: #fff;
    min-width: 0;
    box-sizing: border-box;
}

/* Arrow for dropdowns */
.ts-has-arrow-0be29d94::after {
    content: '';
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 5px solid #1b3a5c;
    pointer-events: none;
}

/* Text Input */
.ts-text-input-0be29d94 {
    width: 100%;
    height: 100%;
    border: none;
    background: transparent;
    padding: 10px 18px;
    font-size: 14px;
    color: #333;
    outline: none;
    box-sizing: border-box;
}
.ts-text-input-0be29d94::placeholder {
    color: #8a95a5;
}

/* Select */
.ts-select-0be29d94 {
    appearance: none;
    -webkit-appearance: none;
    width: 100%;
    height: 100%;
    border: none;
    background: transparent;
    padding: 10px 36px 10px 18px;
    font-size: 14px;
    color: #333;
    cursor: pointer;
    outline: none;
    box-sizing: border-box;
}

/* Toggle Cell */
.ts-toggle-cell-0be29d94 {
    flex: 0 0 auto;
    gap: 10px;
    padding: 0 18px;
}
.ts-toggle-label-0be29d94 {
    font-weight: 600;
    font-size: 14px;
    color: #0b2545;
    white-space: nowrap;
}

/* Toggle Switch */
.ts-switch-0be29d94 {
    position: relative;
    display: inline-block;
    width: 44px;
    height: 24px;
    flex-shrink: 0;
}
.ts-switch-0be29d94 input {
    opacity: 0;
    width: 0;
    height: 0;
}
.ts-slider-0be29d94 {
    position: absolute;
    cursor: pointer;
    inset: 0;
    background-color: #b0bec5;
    transition: 0.3s;
    border-radius: 24px;
}
.ts-slider-0be29d94::before {
    content: '';
    position: absolute;
    height: 18px;
    width: 18px;
    left: 3px;
    bottom: 3px;
    background: #fff;
    transition: 0.3s;
    border-radius: 50%;
}
.ts-switch-0be29d94 input:checked + .ts-slider-0be29d94 {
    background-color: #1b3a5c;
}
.ts-switch-0be29d94 input:checked + .ts-slider-0be29d94::before {
    transform: translateX(20px);
}

/* Button Cell — wrapper for width control */
.ts-btn-cell-0be29d94 {
    flex: 0 0 auto;
    display: flex;
    align-items: stretch;
    min-width: 0;
    box-sizing: border-box;
}

/* Submit Button */
.ts-btn-0be29d94 {
    width: 100%;
    min-width: 58px;
    min-height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #1b3a5c;
    border: none;
    cursor: pointer;
    transition: background-color 0.25s;
    box-sizing: border-box;
}
.ts-btn-0be29d94:hover {
    background-color: #132a44;
}
.ts-btn-0be29d94 svg {
    fill: #fff;
    width: 18px;
    height: 18px;
}