/* Style the tabbed interface */
.support-tabs {
    display: flex;
    margin-bottom: 20px;
}

.tab-button {
    padding: 10px 20px;
    background-color: #f1f1f1;
    border: 1px solid #ddd;
    cursor: pointer;
    margin-right: 5px;
}

.tab-button.active {
    background-color: #0073aa;
    color: #fff;
}

.tab-content {
    display: none;
}

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