/**
 * Custom styling for Forminator Form 1036 - Job Select Field
 */

.job-select-field select {
    width: 100%;
    padding: 0.75rem 1rem;
    font-size: 1rem;
    line-height: 1.5;
    color: var(--global-color-black);
    background-color: var(--fn-color-surface) !important;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23333' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.75rem center;
    background-size: 1.25rem;
    border: none;
    border-radius: var(--fn-radius-theme);
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    cursor: pointer;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.job-select-field select:focus {
    outline: none;
    border-color: #007cba;
    box-shadow: 0 0 0 3px rgba(0, 124, 186, 0.1);
}

.job-select-field select:hover {
    border-color: #999;
}

.job-select-row {
    margin-bottom: 1rem;
}

.job-select-field {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.job-select-field label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
}
