.tabbed-section {
    display: flex;
    flex-direction: column;
}

.tab-buttons {
    display: flex;
}

.tab-button {
    flex: 1;
    padding: 10px;
    text-align: center;
    cursor: pointer;
    background-color: #f0f0f0;
}

.tab-button.active {
    background-color: black;
    color: white;
}

.tab-content {
    display: none;
    padding: 20px 0;
}

.tab-content.active {
    display: block;
}
