.ehmc-tabs {
    margin-top: 20px;
    display: flex;
    gap: 10px;
}

.ehmc-tab {
    padding: 10px 16px;
    background: #f1f1f1;
    border: 1px solid #ddd;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 500;
}

.ehmc-tab.active {
    background: #2271b1;
    color: #fff;
    border-color: #2271b1;
}

.ehmc-tab-content {
    display: none;
    background: #fff;
    padding: 20px;
    margin-top: 20px;
    border: 1px solid #ddd;
    border-radius: 8px;
}

.ehmc-tab-content.active {
    display: block;
}

.fw-bold {
    font-weight: 600;
}
