/* Tabs Container */
.wp-block-fseblocks-tabs .tabs{display:flex;justify-content:center; margin:5vh 0;}

/* Individual Tab Buttons */
.wp-block-fseblocks-tabs .tab-button {
  padding:1rem 2rem;
  margin:0 0.5rem;
  font-family:inherit;
  cursor: pointer;
  background: white;
  border: 1px solid #3c3835;
  color: #3c3835;
  border-radius:40px;
  font-size:1rem;
  transition:
    background 0.2s,
    color 0.2s;
}

/* Active Tab */
.wp-block-fseblocks-tabs .tab-button.active {
  background: #3c3835;
  border-color: #3c3835;
  font-weight: bold;
  color: white;
  z-index: 1;
  position: relative;
}

/* Fade-in effect for newly activated tab */
@keyframes fadeEffect {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.wp-block-fseblocks-tabs .tab-panel{display:none;}

.wp-block-fseblocks-tabs .tab-panel.is-active {
  display: block;
  animation: fadeEffect 0.3s ease-in;
}

.wp-block-fseblocks-tabs.vertical {
  display: grid;
  grid-template-columns: 350px auto;
  grid-column-gap: 5vw;
}

.wp-block-fseblocks-tabs.vertical .tabs {
  display: flex;
  flex-direction: column;
}
