.wrapper {
    /* border-top: 03px solid #0000FF; */
    border-top: 05px solid rgb(13, 110, 253);
}

a { 
    text-decoration: none;
}
/*
.badge {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    line-height: 48px; // Set this to the same value as the height of the circle 
  }
*/
.badge-circle {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    line-height: 48px; /* Set this to the same value as the height of the circle */
}

.badge-inline {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    line-height: 48px; /* Set this to the same value as the height of the circle */
}

.nav-tabs .nav-link.active {
    background-color: rgb(13, 110, 253);
    color: #fff;
    border: 1px solid rgb(17, 17, 163);

}
.nav-tabs .nav-link {
    background-color: #e7edf3;
    color: #4e4ec2;
    border: 1px solid rgb(65, 65, 212);
    margin-left: 0.5rem;
    margin-right: 0.5rem;
    padding-left: 1rem;
    padding-right: 1rem;

}

.success-alert-container {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    padding: 10px 20px;
    background-color: #73ed7d;
    color: #101443;
    border: 1px solid #54ea79;
    border-radius: 8px;
    z-index: 9999;
    display: none;
  }
  
  .failed-alert-container {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    padding: 10px 20px;
    background-color: #f42929;
    color: #ffffff;
    border: 1px solid #ea5454;
    border-radius: 8px;
    z-index: 9999;
    display: none;
  }