.tabs {
    width: 80%;
    margin: 2rem auto;
    border: 1px solid #000;
    background-color: #f2f2f2;
}

.tab-buttons {
    display: flex;
    border-bottom: 1px solid #000;
    background-color: white;
}

.tab-btn {
    flex: 1;
    padding: 10px 15px;
    border: none;
    background: none;
    font-weight: bold;
    color: red;
    cursor: pointer;
    border-right: 1px solid transparent;
}

.tab-btn:last-child {
    border-right: none;
}

.tab-btn.active {
    background-color: #f2f2f2;
    border: 1px solid #000;
    border-bottom: none;
    border-top-left-radius: 4px;
    border-top-right-radius: 4px;
    color: red;
}

.tab-content {
    display: none;
    padding: 20px;
    max-width: 1200px;
    margin: auto;
}

.tab-content.active {
    display: block;
}
