/* Custom Occupation Input Fixes */
.custom-occupation-input {
    margin-top: 16px;
    padding: 16px;
    background: #f8f9fa;
    border-radius: 8px;
    border: 2px solid #e1e8ed;
    display: none;
    transition: all 0.3s ease;
}

.custom-occupation-input.show {
    display: block;
    animation: slideDown 0.3s ease;
}

.custom-occupation-input input {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e1e8ed;
    border-radius: 6px;
    font-size: 16px;
    background: white;
    color: #2c3e50;
    margin-bottom: 12px;
    transition: border-color 0.3s ease;
}

.custom-occupation-input input:focus {
    border-color: #d4af37;
    outline: none;
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

.custom-occupation-confirm {
    background: #d4af37;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.custom-occupation-confirm:hover:not(:disabled) {
    background: #b8941f;
    transform: translateY(-1px);
}

.custom-occupation-confirm:disabled {
    background: #bdc3c7;
    cursor: not-allowed;
    opacity: 0.6;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Prevent occupation selector from closing when interacting with custom input */
.custom-occupation-input * {
    pointer-events: auto;
}
