/* Style for the tab */
.nav-tabs .nav-item .nav-link {
    color: white;  /* Light text */
    font-size: 28px;
    border-top: 3px solid white;
    border-right: 3px solid white;
    border-left: 3px solid white;
    border-bottom: none; /* No border at the bottom */
    margin-bottom: 0; /* Remove bottom margin */
}

/* Style for the active tab */
.nav-tabs .nav-item .nav-link.active {
    background-color: #495057;  /* Slightly different color for active tab */
    color: white;
}

/* Custom style for the Bootstrap navbar */
.navbar, #main-content {
    background-color: rgb(17, 17, 17) !important;  /* Set the navbar color */
    border-bottom: 3px solid white; /* 3px white line at the bottom */
    padding-bottom: 0; /* Reduce bottom padding */
}

.navbar-brand {
    font-weight: bold;  /* Make font bold */
    font-size: 28px;    /* Set font size to 24px */
}

/* assets/style.css */

/* Ensures the navbar container is a flexbox */
.d-flex {
    display: flex;
    justify-content: space-between; /* This will push the brand to the left and tabs to the center */
    align-items: center; /* Aligns items vertically center */
}

/* Optional: If you need more control over the NavbarBrand alignment */
.navbar-brand-custom {
    margin-right: auto; /* This will push everything else to the right */
}

/* Optional: To center tabs in the available space */
.navbar-tabs-custom {
    justify-content: center;
    flex-grow: 1; /* Allows the tabs to take up the available space for centering */
}


