/* Container */
/*.tabs-container {
    max-width: 600px;
    margin: auto;
    font-family: Arial, sans-serif;
  }*/
  
  /* Tab Navigation */
  .tabs-menu {
    list-style: none;
    display: flex;
    padding: 0;
    margin: 0;
    border-bottom: 2px solid #ddd;
  }
  
  .tab-item {
    flex: 1;
    text-align: center;
    padding: 12px;
    cursor: pointer;
    font-weight: bold;
    position: relative;
    transition: color 0.3s;
  }
  
  /* Bottom Border Effect */
  .tab-item.active {
    color: #063024 !important;
  }
  
  .tab-item::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 100%;
    height: 3px;
    background: transparent;
    transition: background 0.3s;
  }
  
  .tab-item.active::after {
    background: #063024 !important;
  }
  
  /* Tab Content */
  .tabs-content {
    padding: 20px;
    border: 1px solid #ddd;
    background: #fff;
  }
  
  .tab-pane {
    display: none;
  }
  
  .tab-pane.active {
    display: block;
  }
  input.input-k{
    box-sizing:border-box !important;
  }
  .btn:hover {
    color: #fff !important;
  }
  
  .tabs-container{

     margin-top:0px !important;
   }
