.theme-bg-dark {
    background-color: rgb(0, 35, 51);
}

.btn-primary {
    background: rgb(0, 35, 51);
}

.social-list li a {
    color: rgb(0, 35, 51);
}

.theme-icon-holder {
    color: rgb(0, 35, 51);
}

.btn-light {
    color: rgb(0, 35, 51);
}

.logo-icon {
    max-height: 50px;
}

.docs-nav .nav-item.section-title .nav-link {
    color: rgb(0, 35, 51);
}

.docs-nav .nav-item.active .nav-link .theme-icon-holder {
    background: rgb(0, 35, 51);
}

.docs-nav .nav-item.active .nav-link {
    color: rgb(0, 35, 51);
}

.nav {
    --bs-nav-link-color:  rgb(0, 35, 51);
    --bs-nav-link-hover-color:rgb(0, 35, 51);
}

.docs-nav .nav-link.active .theme-icon-holder {
    background: rgb(0, 35, 51);
}

/* Style the tab */
.tab {
    overflow: hidden;
    border: 1px solid #ccc;
    background-color: #f1f1f1;
  }
  
  /* Style the buttons that are used to open the tab content */
  .tab button {
    background-color: inherit;
    float: left;
    border: none;
    outline: none;
    cursor: pointer;
    padding: 14px 16px;
    transition: 0.3s;
  }
  
  /* Change background color of buttons on hover */
  .tab button:hover {
    background-color: #ddd;
  }
  
  /* Create an active/current tablink class */
  .tab button.active {
    background-color: #ccc;
  }
  
  /* Style the tab content */
  .tabcontent {
    display: none;
    padding: 6px 12px;
    border: 1px solid #ccc;
    border-top: none;
  }

  .tabcontent {
    animation: fadeEffect 1s; /* Fading effect takes 1 second */
  }
  
  /* Go from zero to full opacity */
  @keyframes fadeEffect {
    from {opacity: 0;}
    to {opacity: 1;}
  }