/**
 * Mils Product Compatibility Table Style
 */
.mils-front-compat-container {
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    background-color: #ffffff;
    font-family: "Inter", -apple-system, sans-serif;
    overflow: hidden;
    margin-top: 15px;
    margin-bottom: 25px;
}
.mils-front-compat-title {
    padding: 16px 20px;
    background-color: #f5f5f5;
    color: #111111;
    margin: 0;
    font-size: 15px;
    font-weight: 700;
    border-bottom: 1px solid #e0e0e0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.mils-front-compat-row {
    display: flex;
    border-bottom: 1px solid #e0e0e0;
    background-color: #ffffff;
}
.mils-front-compat-row:nth-child(even) {
    background-color: #f9f9f9;
}
.mils-front-compat-row:last-child {
    border-bottom: none;
}
.mils-front-compat-col-left {
    width: 35%;
    padding: 16px 20px;
    font-weight: 600;
    color: #111111;
    border-right: 1px solid #e0e0e0;
    font-size: 14px;
}
.mils-front-compat-col-right {
    width: 65%;
    padding: 16px 20px;
    color: #444444;
    font-size: 14px;
    line-height: 1.6;
}
@media (max-width: 768px) {
    .mils-front-compat-row { 
        flex-direction: column; 
    }
    .mils-front-compat-col-left { 
        width: 100%; 
        border-right: none; 
        border-bottom: 1px dashed #e0e0e0; 
    }
    .mils-front-compat-col-right { 
        width: 100%; 
    }
}
