/* -----------------------------------
   Target all elements within the .ilec container
   ----------------------------------- */
.ilec h2 {
    font-size: 2.2em;
    color: #004d99; /* Dark Blue */
    border-bottom: 2px solid #ccc;
    padding: 0;
    margin: 0;
}

.ilec h3 {
    font-size: 1.4em;
    color: #333;
    margin-top: 25px;
    margin-bottom: 15px;
}

.ilec p {
    max-width: 1000px;
    line-height: 1.6;
    margin-bottom: 10px;
}

/* -----------------------------------
   Table Styling
   ----------------------------------- */
.ilec table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 30px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
    background-color: #fff;
}

.ilec thead {
    background-color: #f0f8ff;
    color: #1e3a5f;
    font-weight: bold;
    text-align: left;
    border-bottom: 3px solid #004d99;
}

.ilec thead td {
    padding: 12px 15px;
    font-size: 1.05em;
    vertical-align: bottom;
}

.ilec tbody td {
    padding: 10px 15px;
    border-bottom: 1px solid #eee;
    vertical-align: top;
}

.ilec tbody tr:hover {
    background-color: #f9f9f9;
    transition: background-color 0.2s ease;
}

/* --- You can customize these if you already updated them --- */
.ilec tbody tr:nth-child(even) {
    background-color: #ececec; /* Light striping */
}

/* -----------------------------------
   Column Widths for First Table (Categories)
   ----------------------------------- */
.ilec table:first-of-type td:nth-child(1) { width: 12%; }
.ilec table:first-of-type td:nth-child(2) { width: 18%; }
.ilec table:first-of-type td:nth-child(3) { width: 45%; }
.ilec table:first-of-type td:nth-child(4) { 
    width: 25%;
    font-weight: bold;
}

/* -----------------------------------
   Column Widths for Second Table (Carrier List)
   ----------------------------------- */
.ilec table:last-of-type td:nth-child(1) { width: 12%; }
.ilec table:last-of-type td:nth-child(2) { 
    width: 20%; 
    font-weight: bold;
    color: #004d99;
}
.ilec table:last-of-type td:nth-child(3) { width: 38%; }
.ilec table:last-of-type td:nth-child(4) { width: 30%; }

/* -----------------------------------
   List Styling (Key Takeaways) - HARDENED FOR FULL WIDTH
   ----------------------------------- */

.ilec ol {
    /* CRITICAL FIX: Explicitly set width to 100% */
    width: 100%; 
    
    /* Aggressively reset all browser default spacing */
    margin-left: 0 !important;
    margin-right: 0 !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    margin-top: 0 !important;
    margin-bottom: 20px !important; /* Keep a bottom margin for spacing */

    list-style-type: none;
}

.ilec ol li {
    /* Ensure padding and border are contained within the 100% width */
    /* Use box-sizing to manage padding/border contribution to width, if necessary */
    box-sizing: border-box; 
    
    background-color: #e9f5ff; 
    border-left: 5px solid #004d99;
    padding: 10px 15px 10px 20px; 
    margin-bottom: 10px;
    font-size: 1.05em;
}
