/**
 * Nestbay Property Form — Critical fallback styles
 * Tailwind CDN provides full styles; this covers essential show/hide
 * and base resets if CDN is slow or blocked.
 */
#nestbay-property-form-app .hidden {
    display: none !important;
}
#nestbay-property-form-app button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}
/* Multi-step wizard */
#nestbay-property-form-app .pf-steps {
    display: flex;
    gap: 6px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin-bottom: 12px;
    padding-bottom: 2px;
}
#nestbay-property-form-app .pf-step {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    background: #ffffff;
    color: #6b7280;
    font-size: 13px;
    font-weight: 500;
    white-space: nowrap;
    cursor: pointer;
    transition: all 0.15s ease;
}
#nestbay-property-form-app .pf-step .num {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: #e5e7eb;
    color: #4b5563;
    font-size: 11px;
    font-weight: 700;
    flex-shrink: 0;
    transition: inherit;
}
#nestbay-property-form-app .pf-step.active {
    border-color: #2563eb;
    background: #eff6ff;
    color: #1d4ed8;
}
#nestbay-property-form-app .pf-step.active .num {
    background: #2563eb;
    color: #ffffff;
}
#nestbay-property-form-app .pf-step.done {
    border-color: #93c5fd;
    background: #eff6ff;
    color: #2563eb;
}
#nestbay-property-form-app .pf-step.done .num {
    background: #2563eb;
    color: #ffffff;
}
#nestbay-property-form-app .pf-progress {
    height: 4px;
    background: #e5e7eb;
    border-radius: 999px;
    overflow: hidden;
    margin-bottom: 24px;
}
#nestbay-property-form-app .pf-progress-bar {
    height: 100%;
    background: linear-gradient(90deg, #2563eb, #4f46e5);
    border-radius: 999px;
    transition: width 0.3s ease;
}
#nestbay-property-form-app input.pf-invalid,
#nestbay-property-form-app select.pf-invalid,
#nestbay-property-form-app .file-upload-zone.pf-invalid {
    border-color: #dc2626 !important;
    box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.15) !important;
}
#nestbay-property-form-app input.pf-invalid:focus,
#nestbay-property-form-app select.pf-invalid:focus {
    box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.25) !important;
}
#nestbay-property-form-app .pf-nav {
    margin-top: 4px;
}
/* Honeypot: invisible to users, visible to bots */
#nestbay-property-form-app .hp-field {
    position: absolute;
    left: -9999px;
    opacity: 0;
    height: 0;
    overflow: hidden;
}
