/* style.css */
.wp-block-custom-tabs-block {
  .tabs-navigation {
    display: flex;
    border-bottom: 1px solid #e0e0e0;
    margin-bottom: 15px;
  }

  .tab-title {
    padding: 10px 15px;
    background: #f4f4f4;
    border: 1px solid #e0e0e0;
    border-bottom: none;
    margin-right: 5px;
    cursor: pointer;
    transition: background 0.3s ease;

    &.active, &:hover {
      background: #ffffff;
      border-bottom: 2px solid #007cba;
    }
  }

  .tab-content {
    > .block-list-appender {
      margin-top: 0;
    }
  }
}
