.geeks {
    color: green;
  }
  
  .tabs-container {
    width: 100%;
    margin: 20px auto;
  }
  
  .tabs {
    display: flex;
  }
  
  .tab {
    cursor: pointer;
    padding: 10px;
    margin-right: 10px;
    border: 1px solid #ddd;
    border-bottom: none;
    background-color: #f1f1f1;
  }
  
  .tab.active {
    background-color: #ddd;
  }
  
  .tab-content {
    border: 1px solid #ddd;
    padding: 10px;
  }
.tab-buttons {
  display: flex;
}
 
.tab-buttons button {
  margin-right: 10px;
  padding: 8px;
  cursor: pointer;
  border: 1px solid #ccc;
  background-color: #f0f0f0;
}
 
.tab-buttons button.active {
  background-color: #ddd;
}
 
.tab-content {
  margin-top: 10px;
  padding: 10px;
  border: 1px solid #ccc;
}
.both
{
  clear: both;
}

