/**
 * SimplePhysical Driver Lookup Styles
 * All rules scoped under .spl-lookup-container
 */
.spl-lookup-container {
    padding: 20px 0;
    margin-bottom: 20px;
}
.spl-lookup-container .spl-lookup-form {
    display: flex;
    gap: 12px;
    align-items: center;
}
.spl-lookup-container .spl-input-wrapper {
    flex: 0 1 320px;
}
.spl-lookup-container input.text,
.spl-lookup-container input.title,
.spl-lookup-container input[type=email],
.spl-lookup-container input[type=password],
.spl-lookup-container input[type=tel],
.spl-lookup-container input[type=text],
.spl-lookup-container select,
.spl-lookup-container textarea,
.spl-lookup-container .spl-input {
    width: 100%;
    padding: 10px 12px;
    font-size: 16px;
    color: #333;
    background: #fff;
    border: 1px solid #e6e6e6;
    border-radius: 6px;
    box-sizing: border-box;
    height: 45px;
    line-height: normal;
}
.spl-lookup-container .spl-input:focus {
    outline: none;
    border-color: #007afe;
    background: #eff3ff;
}
.spl-lookup-container .spl-input:disabled {
    background: #f5f5f5;
}
.spl-lookup-container .spl-input::placeholder {
    color: #999;
}
.spl-lookup-container .spl-button {
    padding: 10px 25px;
    font-size: 18px;
    font-weight: 400;
    color: #fefeff;
    background: #007afe;
    border: 2px solid #007afe;
    border-radius: 8px;
    cursor: pointer;
    white-space: nowrap;
    height: 45px;
    box-sizing: border-box;
}
.spl-lookup-container .spl-button:hover:not(:disabled) {
    background: #006ce0;
    border-color: #006ce0;
}
.spl-lookup-container .spl-button:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}
.spl-lookup-container .spl-title {
    margin: 0 0 15px;
    font-size: 18px;
    font-weight: 700;
    color: #333;
}
.spl-lookup-container .spl-message {
    margin-top: 12px;
    font-size: 14px;
}
.spl-lookup-container .spl-message.spl-success { color: #2e7d32; }
.spl-lookup-container .spl-message.spl-error { color: #c62828; }
.spl-lookup-container .spl-message.spl-warning { color: #e65100; }
.spl-lookup-container .spl-preview {
    margin-top: 15px;
    padding: 12px 16px;
    font-size: 15px;
    font-weight: 600;
    color: #007afe;
    background: #ffffff;
    border: 1px solid #e6e6e6;
    border-left: 3px solid #007afe;
    border-radius: 4px;
}
.spl-lookup-container .spl-error {
    color: #c62828;
    font-size: 14px;
}
@media (max-width: 500px) {
    .spl-lookup-container .spl-lookup-form {
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
    }
    .spl-lookup-container .spl-input-wrapper { flex: 1; }
    .spl-lookup-container .spl-button { width: 100%; text-align: center; }
}

/**
 * Lookup Checkbox Styles
 * These checkboxes show intake values that examiner can choose to accept
 */
.with_frm_style .frm_checkbox.spl-lookup-checkbox {
    background-color: #ffe26d;
    padding: 12px 12px 0px 12px;
    border-radius: 15px 15px 0px 0px;
    margin-bottom: 10px;
    display: block;
}
.with_frm_style .frm_checkbox.spl-lookup-checkbox label {
    display: block;
    width: 100%;
    cursor: pointer;
    font-size: 14px;
    color: #333;
    margin-bottom: 10px;
    font-weight: normal;
}
.with_frm_style .frm_checkbox.spl-lookup-checkbox input[type="checkbox"] {
    width: 16px;
    height: 16px;
    margin: 0;
    cursor: pointer;
    flex-shrink: 0;
}
/**
 * Static Reference Styles
 * Read-only display of intake values for examiner reference
 */
.spl-static-reference {
    background-color: #ffe26d;
    padding: 12px 20px;
    border-radius: 5px;
    font-size: 14px;
    color: #333;
    font-weight: normal;
}