    .report-filters {
        text-align: center;
    }
    .resetBtn {
        float:right;
        margin-top: 3px;
        margin-left: 10px;
    }
    .reset_btn {
        color: inherit !important;
        border: 1px solid rgba(0, 0, 0, 0.3);
        background-color: rgba(230, 230, 230, 0.1);
        background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, rgba(230, 230, 230, 0.1)), color-stop(100%, rgba(0, 0, 0, 0.1)));
        background: -webkit-linear-gradient(top, rgba(230, 230, 230, 0.1) 0%, rgba(0, 0, 0, 0.1) 100%);
        background: -moz-linear-gradient(top, rgba(230, 230, 230, 0.1) 0%, rgba(0, 0, 0, 0.1) 100%);
        background: -ms-linear-gradient(top, rgba(230, 230, 230, 0.1) 0%, rgba(0, 0, 0, 0.1) 100%);
        background: -o-linear-gradient(top, rgba(230, 230, 230, 0.1) 0%, rgba(0, 0, 0, 0.1) 100%);
        background: linear-gradient(to bottom, rgba(230, 230, 230, 0.1) 0%, rgba(0, 0, 0, 0.1) 100%);
        padding: 5px 10px;
    }
    .viewDetailsIcon {
        width: 25px;
    }
    /* Ensure text wraps properly inside table cells */
    .wrap-text {
        white-space: normal !important;
        word-break: break-word !important;
        overflow-wrap: break-word !important;
        max-width: 250px; /* Adjust as needed */
        display: block;
    }

    /* Apply wrapping to all table cells */
    #warrantsTable td {
        white-space: normal !important;
        word-break: break-word !important;
        overflow-wrap: break-word !important;
        max-width: 250px; /* Adjust column width */
        word-spacing: 0px;
    }

    /* Ensure table layout adapts */
    #warrantsTable {
        table-layout: auto !important;
        width: 100% !important;
    }

    #secondary-address-container {
        margin-top: 10px;
    }

    .secondary-address {
        display: flex;
        align-items: center;
        gap: 10px; /* Spacing between fields */
        margin-bottom: 10px; /* Space below each row */
    }

    .secondary-address input {
        padding: 8px;
        width: 200px;
    }

	.add-address {
		background-color: #f4f4f4;
		color: #4e4e4e;
		border: 1px solid #bbb;
		cursor: pointer;
	}
	
	.secondary-address input[name="tax_id[]"] {
        width: 25%;
    }

    .secondary-address input[name="address[]"] {
        width: 75%;
    }
    
    /* === Surplus Table Styling === */
    .surplus-table-container {
        overflow-x: auto;
        margin-top: 20px;
    }

    .surplus-table {
        width: 100%;
        border-collapse: collapse;
        font-size: 14px;
        text-align: left;
        background: #fff;
        border: 1px solid #ddd;
        box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    }

    .surplus-table thead {
        background-color: #f4f4f4;
    }

    .surplus-table th, 
    .surplus-table td {
        padding: 10px 15px;
        border-bottom: 1px solid #ddd;
        vertical-align: middle;
    }

    .surplus-table th {
        font-weight: 600;
        text-transform: uppercase;
        color: #333;
    }

    .surplus-table tbody tr:hover {
        background-color: #f9f9f9;
    }

    .surplus-table td:nth-child(1) {
        width: 15%;
    }

    .surplus-table td:nth-child(2) {
        width: 35%;
    }

    .surplus-table td:nth-child(3) {
        width: 35%;
    }

    .surplus-table td:nth-child(4) {
        width: 15%;
    }
    
    
    .date-input {
        background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg"       width="16" height="16" fill="gray" class="bi bi-calendar" viewBox="0 0 16 16">      <path d="M3.5 0a.5.5 0 0 1 .5.5V1h8V.5a.5.5 0 0 1       1 0V1h1a2 2 0 0 1 2 2v1H0V3a2 2 0 0 1       2-2h1V.5a.5.5 0 0 1 .5-.5zM16 14V5H0v9a2       2 0 0 0 2 2h12a2 2 0 0 0 2-2z"/>    </svg>') no-repeat right 10px center;
        background-size: 14px;
        cursor: pointer;
    }