/* Basic styling for improved readability */
.farmers-contracts-messages {
    margin-top: 10px;
}
.production-summary-table th {
    /*width: 15%; /* Adjust as needed */
    text-align: left;
}
.production-summary-table td {
    /*width: 35%; /* Adjust as needed */
}
.production-summary-table input[type="text"],
.production-summary-table input[type="number"] {
      width: 200px;
    box-sizing: border-box; 
}

#contracts-table input[type="text"],
#contracts-table input[type="date"],
#contracts-table input[type="number"],
#contracts-table select,
#contracts-table textarea {
    width: 100%;
    box-sizing: border-box;
    /* Basic styling for editable fields */
    border: 1px solid #ccc;
    padding: 3px 5px;
    border-radius: 3px;
}

#contracts-table textarea {
    min-height: 40px; /* Make notes field more usable */
    resize: vertical;
}

#contracts-table tfoot .total-row th {
    font-weight: bold;
    background-color: #f3f3f3;
    padding: 8px 10px;
    border-top: 1px solid #e0e0e0;
}

/* Style for the "Add New Contract Row" button in the footer */
#contracts-table tfoot .add-new-row td {
    padding-top: 15px;
    padding-bottom: 15px;
    text-align: center;
}

/* Hide WP_List_Table standard pagination for this custom table if needed, though this page doesn't use it */
.tablenav.bottom {
    display: none;
}

/* Make sure notice messages are visible */
.wrap .notice {
    margin: 10px 0;
}

/* Style for scrollable checkbox list */
.scroll-checkbox-list {
    max-height: 150px;
    overflow-y: auto;
    border: 1px solid #ccc;
    padding: 5px;
    background-color: #fff;
}
.scroll-checkbox-list label {
    display: block;
    margin-bottom: 3px;
}
.scroll-checkbox-list input[type="checkbox"] {
    margin-right: 5px;
}
