/* layout.css */
.main {
    display: flex;
    flex-direction: column;
    height: calc(100vh - 100px);
  }
  
  .tab-content {
    flex: 1;
    display: none;
    padding: 10px;
    overflow: auto;
  }
  
  .tab-content.active {
    display: block;
  }
  