.project-nav-pills {
    gap: 10px;
    width: 100%;
    padding: 1rem;
    border-radius: 1rem;
    box-shadow: 0 0 10px 2px var(--shadow-1);
    border: none;
    margin: 1rem 0 !important;
    transition: all 0.2s ease;
    background: white;
}
.project-nav-pills .nav-link {
    border-radius: 8px;
    border: 1px solid #eaeaea;
    color: #606060;
    font-size: 12px;
    font-weight: 600 !important;
    min-height: 40px;
    text-align: right;
    display: flex;
    align-items: center;
    gap: 8px;
}
.project-nav-pills .nav-link.active svg path {
    fill: #ffffff;
}
.project-nav-pills .nav-link.active svg path.stroke {
    stroke: #ffffff;
}
.project-nav-pills .nav-link.active svg path.stroke-fill {
    fill: #ffffff;
    stroke: #ffffff;
}
.stage__item {
    display: flex;
    flex-direction: column;
    margin-bottom: 10px;
}
.stage__item_header {
    display: flex;
    align-items: center;
    gap: 10px;
}
.stage__item_header_title {
    border-radius: 16px;
    border: 1px solid #eaeaea;
    padding: 15px 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    color: #0b2746;
    font-size: 16px;
    font-weight: 600;
}
.stage__item_body {
    display: flex;
    flex-direction: column;
    gap: 0px;
}
.stage__item_sub_item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 15px;
}
.stage__item_sub_item_title {
    border-radius: 16px;
    background: #f1f8fe;
    border: 1px solid #eaeaea;
    padding: 15px 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    color: #0b2746;
    font-size: 14px;
    font-weight: 600;
}
.stage__item_sub_item .form-check {
    min-height: unset;
}
.stage__item_sub_item .form-check .form-check-input[type="checkbox"] {
    width: 20px;
    height: 20px;
}
.select-all-stages-checkbox label {
    font-size: 16px;
    color: #0b2746;
    font-weight: 500;
}
.select-all-stages-checkbox {
    align-items: center;
    gap: 10px;
    display: flex;
}
.select-all-stages-checkbox .form-check-input[type="checkbox"] {
    width: 20px;
    height: 20px;
}
.bulk-delete-stages-btn {
    color: #dd0417;
    font-size: 16px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}
.form-check-custom {
    display: flex;
    align-items: center;
    gap: 10px;
}
.form-check-custom label {
    font-size: 14px;
    color: #0b2746;
    font-weight: 500;
}
.form-check-custom .form-check-input[type="checkbox"] {
    width: 20px;
    height: 20px;
}
.budget-allowance-options {
    flex-wrap: wrap;
    gap: 15px;
}
.w-100 {
    width: 100% !important;
}

/* dark theme */

html.dark .project-nav-pills {
    box-shadow: 0 0 10px 2px var(--shadow-3);
    background: var(--dark-2);
}
html.dark .project-nav-pills .nav-link {
    border-color: var(--dark-4);
    color: var(--white-1);
}
html.dark .stage__item_header_title {
    border-color: var(--dark-4);
    background: var(--dark-3);
    color: var(--white-1);
}
html.dark .stage__item_sub_item_title {
    border-color: var(--dark-4);
    background: var(--dark-2);
    color: var(--white-1);
}
