
.tabs {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.tab {
    padding: 0.5rem 1rem;
    border: none;
    background: #ccc;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
}

.tab.active {
    background: #b5171a;
    color: #fff;
}

.tab-content {
    display: none;
}

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