.user-tracker-tabs {
    display: flex;
    margin-bottom: 1em;
}

.ut-tab-button {
    padding: 10px 20px;
    margin-right: 5px;
    background: #f1f1f1;
    border: 1px solid #ccc;
    cursor: pointer;
    transition: background 0.3s;
}

.ut-tab-button.active {
    background: #0073aa;
    color: #fff;
}

.ut-tab-content {
    display: none;
}

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