/* PermitPilot CY — small overrides on top of Tailwind CDN. */
[x-cloak] { display: none !important; }

/* Sensible default styling for raw form controls (Tailwind CDN resets are minimal). */
input[type="text"],
input[type="email"],
input[type="password"],
input[type="number"],
input[type="date"],
input[type="datetime-local"],
select,
textarea {
    width: 100%;
    border-radius: 0.5rem;
    border: 1px solid rgb(203 213 225);
    background: #fff;
    padding: 0.55rem 0.75rem;
    font-size: 0.875rem;
    color: rgb(15 23 42);
}
input:focus, select:focus, textarea:focus {
    outline: none;
    border-color: rgb(37 99 235);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.15);
}
label { font-weight: 500; }

.prose-draft { white-space: pre-wrap; line-height: 1.6; }
