.wpjsutils-tabs {
.tab-list {
display: flex;
gap: 4px;
padding: 0 4px;
list-style-type: none;
margin-bottom: 0;
position: relative;
z-index: 2;
li {
border: solid 1px gray;
border-radius: 3px;
border-bottom-left-radius: 0;
border-bottom-right-radius: 0;
border-bottom: 0;
padding: 6px 8px;
padding-bottom: 5px;
margin: 0;
cursor: pointer;
&.active {
background: white;
}
}
}
.panel {
position: relative;
top: -1px;
z-index: 1;
display: none;
padding: 20px;
background: white;
border: solid 1px gray;
border-radius: 4px;
&.active {
display: block;
}
}
}