    /* Consistent sizing and transitions for the "Easy Fill" experience */
    input, select, textarea {
        min-height: 45px;
        padding: 12px;
        transition: all 0.2s ease-in-out;
        border: 2px solid gray;
    }
    input:focus, select:focus, textarea:focus {
        background-color: #fffaf5; /* Subtle orange tint on focus */
    }