.tab-container {
    margin-bottom: 20px;
}

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

.tab-button.active {
    background-color: #007cba;
    color: #fff;
    border-color: #007cba;
}

.tab-content {
    display: none;
}

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