.custom-tab-container {
display: flex;
justify-content: center;
margin-top:10px;
}
.custom-tabs {

background-color: rgba(5, 11, 29, 0.8);
    border-right: 2px solid #8d8d8d;
padding: 10px;
}
.custom-tab {
padding: 14px 20px;
background: #173456;

    border: 1px solid #0f3a6c;
transition: background 0.3s, color 0.3s;
text-align: center;
width: 200px;
margin-bottom: 5px;
cursor: pointer;
}
.custom-tab:hover {
background: #02244c;
color: #fff;
}
.custom-tab.active {
background: #02244c;
    color: #4899fb;
    font-weight: bold;
border:1px solid #0f3a6c;
    border-left: 4px solid #0877fc;

}
.custom-content-container {
padding-left: 20px;
width: 100%;
min-width: 400px;
flex-grow: 1;
}
.custom-content {
display: none;
text-align: left;
width: 100%;
min-height: 200px;
}
.custom-content.active {
display: block;
}
@media (max-width: 768px) {
  .custom-tab-container {
    flex-direction: column;
    align-items: stretch;
  }

  .custom-tabs {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    border-right: none;
    border-bottom: 2px solid #8d8d8d;
  }

  .custom-tab {
    width: 100%;
    margin-bottom: 0;
    flex: 1;
    border-left: none;
    border-bottom: 2px solid transparent;
    text-align: center;
    font-size: 14px;
    padding: 10px 5px;
  }

  .custom-tab.active {
    border-left: none;
    border-bottom: 2px solid #0877fc;
  }

  .custom-content-container {
    padding-left: 0;
    padding-top: 10px;
    min-width: unset;
  }
}