.form-input {
    width: 100%;
    border-radius: 0.75rem;
    border: 1px solid var(--secondary-color-border);
    padding: 0.625rem 0.875rem;
    font-size: 0.875rem;
    color: #374151;
    background-color: #fff;
    transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.form-input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(16, 101, 60, 0.15);
}

.custom-select {
    position: relative;
}

.form-select-trigger {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
    border-radius: 0.75rem;
    border: 1px solid var(--secondary-color-border);
    padding: 0.625rem 0.875rem;
    font-size: 0.875rem;
    color: #374151;
    background-color: #fff;
    cursor: pointer;
    text-align: left;
    transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.form-select-trigger:focus,
.form-select-trigger.open {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(16, 101, 60, 0.15);
}

.custom-select-panel {
    position: absolute;
    top: calc(100% + 0.375rem);
    left: 0;
    right: 0;
    background: #fff;
    border: 1px solid var(--secondary-color-border);
    border-radius: 0.75rem;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
    max-height: 13rem;
    overflow-y: auto;
    z-index: 30;
    padding: 0.375rem;
}

.custom-select-option {
    padding: 0.5rem 0.75rem;
    border-radius: 0.5rem;
    font-size: 0.875rem;
    color: #374151;
    cursor: pointer;
}

.custom-select-option:hover {
    background-color: var(--primary-bg-light);
    color: var(--primary-color);
}

.custom-select-option.active {
    background-color: var(--primary-color);
    color: #fff;
}
