/* Tabs Container */
.wp-block-fseblocks-tabs .tabs {
  display: flex;
  margin-bottom: 0;
}

/* Individual Tab Buttons */
.wp-block-fseblocks-tabs .tab-button {
  width: 100%;
  padding: 10px 20px;
  cursor: pointer;
  background: #f9f9f9;
  border: 1px solid #ddd;
  border-bottom: none;
  border-radius: 8px 8px 0 0;
  margin-bottom: -1px;
  font-size: 14px;
  transition:
    background 0.2s,
    color 0.2s;
}

/* Active Tab */
.wp-block-fseblocks-tabs .tab-button.active {
  width: 100%;
  background: #fff;
  border-color: #ddd;
  border-bottom: 2px solid #fff;
  font-weight: bold;
  color: #1ba1bb;
  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;
  padding: 1em 2em;
  border-top: none;
  background: #fff;
  border-radius: 0 0 8px 8px;
  border: 1px solid #ddd;
}

.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: 4vw;
}

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