/* Event Bus Fit Analysis Table Styles */
.fit-table {
    width: 100%;
    border-collapse: collapse;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    background-color: white;
    margin: 20px 0;
}

.fit-table th {
    padding: 20px;
    font-size: 24px;
    font-weight: bold;
    text-align: center;
    border: 2px solid #1b1b1b;
    width: 50%;
}

.good-fit-header {
    background-color: #538200;
    color: #ffffff;
}

.not-fit-header {
    background-color: #b50909;
    color: #ffffff;
}

.fit-table td {
    padding: 20px;
    vertical-align: top;
    border: 2px solid #1b1b1b;
    font-size: 16px;
    line-height: 1.6;
    color: #1b1b1b;
}

.good-fit-cell {
    background-color: #ddf9c7;
}

.not-fit-cell {
    background-color: #fde0db;
}

.fit-table em {
    font-style: italic;
    display: block;
    margin-top: 10px;
    font-weight: bold;
}
