.tabs {
  
    font-family: Arial, sans-serif;
    background: #fff;
    box-shadow: 0 0 5px rgba(0,0,0,0.1); 
    border-radius: 5px;
    padding: 10px; /* Ensures height */
    margin-top: 10px;
    
  }
   .tab-buttons {
    /* display: flex;
    border:1px solid #fff;
    box-shadow: 0 0 5px rgba(0,0,0,0.1);  */

    display: inline-flex; /* Makes buttons appear inline like Image 1 */
    justify-content: center;
    width: 520px; /
   }
   .tab-buttons button {
    flex: 1;
    padding: 10px;
    cursor: pointer;
    background-color: #ccc;
    border: none;
    outline: none;
    font-weight: bold;
   }
   .tab-buttons button.active {
    background-color: #eee;
   }
   .tab-content {
    /* border: 1px solid #ccc; */
    padding: 10px;
    /* background-color: #eee; */
    display: none;
   }
   .tab-content.active {
    display: block;
   }



