/* ===============================
   Excel-style compact repeater
   =============================== */

  /* Make table cells compact and grid-like */
.excel-repeater td {
    padding: 0 !important;
    margin: 0 !important;
    border: 1px solid #ccc !important;
    border-radius: 0 !important;
}
/* Kill the wrapper border + background */
.excel-repeater .fi-input-wrp {
    border: none !important;
    border-radius: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
    padding: 0 !important;
    margin: 0 !important;
}

/* Kill the input’s own border, rely only on <td> */
.excel-repeater .fi-input {
    border: none !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    background: transparent !important;
    width: 100% !important;
    padding: 2px 4px !important; /* inner text spacing */
    height: 22px !important;     /* Excel row height */
    line-height: 1.3 !important;
}



