.tabs-wrapper {
    display: flex;
    gap: 10px;
    width: 100%;
    margin-bottom: 30px;
}

.tab-btn {
    padding: 10px 18px;
    border: none;
    cursor: pointer;
    background: #e5e7eb;
    border-radius: 6px;
    font-weight: 600;
    width: 100%;
}

.tab-btn.active {
    background: black;
    color: #fff;
}

.tab-content {
    display: none;
}

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