/* Breadcrumb styles */
.breadcrumb {
    /* background-color: transparent; */
    margin-bottom: 8px;
}
.breadcrumb-item a {
    color: #6c757d; /* Bootstrap default for breadcrumb links */
}
.breadcrumb-item.active {
    color: #495057; /* Slightly darker color for the active breadcrumb */
    font-weight: 500; /* Slightly bolder font */
}

/* Sidebar styles */
.sidebar {
    height: 100vh;
    width: 250px;
    background-color: #f8f9fa;
    padding: 10px;
}
.sidebar .nav-link {
    color: #6c757d;
    display: flex;
    align-items: center;
    font-size: 14px;
    padding: 10px 15px;
}
.sidebar .nav-link.active {
    background-color: rgba(0, 123, 255, 0.08);
    border-radius: 8px;
    /* Convert this to rgb: #007bff */
    color: rgb(0, 123, 255);

}
.sidebar .nav-link i {
    margin-right: 10px;
    font-size: 18px;
}
.sidebar .dropdown-toggle::after {
    margin-left: auto;
}
.nav-item .nav-dropdown {
    margin-left: 20px;
}
.nav-dropdown .nav-link {
    padding: 5px 10px;
}
.sidebar .brand {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
}
.sidebar .brand img {
    width: 40px;
    height: 40px;
    margin-right: 10px;
}
.sidebar .brand h5 {
    margin: 0;
    font-size: 1.25rem;
    color: #007bff;
}

/* Alert styles */
.alert-warning2 {
    background-color: #ffd446;
    border: 2px dashed #856404;
}

/* Fieldset styles */
fieldset {
    border: 1px solid #dee2e6;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
}

fieldset legend {
    font-size: 1.25rem;
    font-weight: 500;
    color: #495057;
    text-align: center;
}

/* Label styles */
label {
    color: rgb(126, 126, 126);
}

/* Tab styles */
.nav-pills .nav-link.active {
    border-radius: 8px 8px 0 0;
    border-bottom: 2px solid #007bff;
    background-color: white;
    color: #007bff;
    font-weight: 600;
}
.nav-pills .nav-link {
    color: #808080;
}
.nav-pills .nav-link.disabled {
    color: #a6a9ab;
}

.form-check label {
    color: rgb(91, 91, 91);
}

/* Main content styles */
#root {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}
body {
    width: 100%;
    height: 100%;
    margin: 0px;
    color: rgb(33, 43, 54);
    line-height: 1.5;
    font-size: 0.9rem;
    font-family: 'Public Sans', sans-serif;
    font-weight: 400;
    background-color: rgb(249, 250, 251);
}


/* Alert styles */
.alert-warning2 {
    background-color: #ffd446;
    border: 2px dashed #856404;
}

/* .nav-item:hover .nav-link {
    background-color: rgb(239, 240, 241);
    color: #007bff;
} */

/* Hover effect for main nav links */
.nav-item:hover > .nav-link {
    background-color: rgb(239, 240, 241);
    color: #007bff;
}

/* Hover effect for dropdown items */
.nav-dropdown .nav-item:hover > .nav-link {
    background-color: rgb(239, 240, 241);
    color: #007bff;
}

/* Make sure to reset the hover effect for the dropdown toggle */
.nav-item .dropdown-toggle:hover {
    background-color: transparent; /* Keep the dropdown toggle background transparent */
    color: #007bff;
}

/* Pills hovering */
.nav-pills .nav-link:hover {
    background-color: rgb(239, 240, 241);
    /* color: #007bff; */
}
