.tab-container {
    display: flex;
    gap: 10px;
  }
  
  .tab-button {
    flex: 1;
    border: 1px solid black;
    padding: 15px;
    background: linear-gradient(to right, white, #e6e6e6);
    cursor: pointer;
    font-weight: bold;
	font-size: 16px;
    color: darkred;
    text-align: left;
    position: relative;
    transition: all 0.3s ease;
    white-space: nowrap;
  }
  
  .tab-button.active {
    background: none;
    background-color: #990000;
    color: white;
  }
  
  .tab-button::before {
    content: '▶';
    position: absolute;
    left: 10px;
  }
  
  .tab-button.active::before {
    content: '▼';
  }
  
  .tab-button span {
    margin-left: 20px;
  }
  
  .tab-content {
    margin-top: 20px;
    padding: 15px;
    background-color: white;
    display: none;
  }
  
  .tab-content.active {
    display: block;
  }

  @media all and (max-width:480px){
	  .tab-container{
		  flex-direction:column;
	  }
  }
@media all and (min-device-width:800px) and (max-device-width:950px){
	.tab-container{
		  flex-direction:column;
	  }
}