﻿.nested {
    padding-left: 20px; /* Default padding for nested items */
    text-decoration: none !important;
    color: black;
    font-weight: bold;
    background-color: none;
}

    .nested .nav-link {
        padding-left: 40px; /* Additional padding for submenu items */
        position: relative; /* Position relative for arrow icon */
        text-decoration: none !important;
        color: black;
        font-weight: bold;
        background-color: none;
    }

.nav-link:hover {
    text-decoration: none !important;
    color: black;
    font-weight: bold;
    background-color: none;
}

.nested .nav-link i {
    position: absolute; /* Position absolute for arrow icon */
    left: 20px; /* Adjust as needed */
    top: 50%; /* Align to center */
    transform: translateY(-50%); /* Center vertically */
    text-decoration: none !important;
    color: black;
    background-color: none;
    font-weight: bold;
}

.li.nav-item {
    max-height: 60px;
    text-decoration: none !important;
    font-weight: bold;
    background-color: none;
}


::marker {
    content: "";
}

.navigationButton {
    -moz-appearance: button;
    -ms-appearance: button;
    -o-appearance: button;
    -webkit-appearance: button;
    appearance: button;
    text-decoration: none;
    color: #000;
    padding: 0.2em 0.4em;
}

.trackerButton {
    color: white;
    background-color: #D72882;
    border: 1px solid #D72882;
    display: flex;
    height: 40px;
    padding: 10px 10px;
    align-items: center;
    gap: 10px;
    width: max-content;
}

.parent:hover {
    text-decoration: none;
}


.checkmark-circle {
    width: 28px; /* Adjust size as needed */
    height: 28px; /* Adjust size as needed */
    background-color: #D72882; /* Adjust color as needed */
    border-radius: 50%;
    display: inline-block;
    position: relative; /* Added to allow absolute positioning inside */
}

.list-group-item {
    display: flex;
    align-items: center;
    padding: 0.75rem 1.25rem; /* Adjust padding as needed */
}

.ms-2 {
    margin-left: 0.5rem; /* Margin between icon and text */
}

.checkmark-circle::after {
    content: '\2713'; /* Unicode for checkmark */
    color: white; /* Set checkmark color to white */
    font-size: 16px; /* Adjust the size as needed */
    font-weight: bold; /* Make the checkmark bold */
    position: absolute; /* Position it inside the circle */
    top: 50%; /* Center vertically */
    left: 50%; /* Center horizontally */
    transform: translate(-50%, -50%); /* Adjust for perfect centering */
}

.checkmark-circle {
    width: 28px; /* Adjust size as needed */
    height: 28px; /* Adjust size as needed */
    background-color: #D72882; /* Adjust color as needed */
    border-radius: 50%;
    display: inline-block;
    position: relative; /* Added to allow absolute positioning inside */
}


.uncheckmark-circle {
    width: 28px; /* Adjust size as needed */
    height: 28px; /* Adjust size as needed */
    border: 2px solid #6c757d; /* Border color and thickness */
    border-radius: 50%; /* Makes it a circle */
    display: inline-block;
    position: relative; /* Allows positioning of the checkmark inside */
    background-color: #fff; /* Ensures the circle is empty */
}



    .uncheckmark-circle::after {
        content: ''; /* No checkmark for empty circle */
        display: block; /* Makes the pseudo-element visible */
    }



.checkfailedmark-circle {
    width: 28px; /* Adjust size as needed */
    height: 28px; /* Adjust size as needed */
    border: 2px solid #327FEF; /* Border color and thickness */
    border-radius: 50%; /* Makes it a circle */
    display: inline-block;
    position: relative; /* Allows positioning of the exclamation mark inside */
    background-color: #327FEF; /* Ensures the circle is empty */
}



    .checkfailedmark-circle::after {
        content: '!'; /* Exclamation mark */
        color: #fff; /* Color of the exclamation mark */
        font-size: 18px; /* Adjust the size as needed */
        font-weight: bold; /* Make the exclamation mark bold */
        position: absolute; /* Position it inside the circle */
        top: 50%; /* Center vertically */
        left: 50%; /* Center horizontally */
        transform: translate(-50%, -50%); /* Adjust for perfect centering */
    }

/* Remove background and border */
#submenuTracker .list-group-item {
    background-color: transparent !important;
    border: none !important;
    text-decoration: none !important;
}
/* Remove any pointer cursor to make it look less like a clickable link */
.list-group-item:hover {
    cursor: default !important;
}

/* Optionally, override any default link styling in Bootstrap */
.list-group-item:focus,
.list-group-item:hover {
    text-decoration: none !important;
    color: inherit !important;
}

/* Set font family and make text bold */
.list-group-item .menu-name,
.list-group-item .status-text {
    font-family: "Segoe UI" !important;
    font-weight: 700 !important;
    color: #000;
    font-size: 18px;
}

.list-group-item .status-text {
    font-size: 10px;
    font-weight: bold !important;
}

/* Optional: Adjust button styles */
.list-group-item button.trackerButton {
    font-family: 'Segoe UI' !important;
    font-weight: bold !important;
}

/* Ensure spacing and alignment remain intact */
.list-group-item .d-flex {
    align-items: center;
}

.card-header {
    padding: 0.1rem 1.25rem;
    margin-bottom: 0;
    /* background-color: rgba(0, 0, 0, .03); */
    border-bottom: 1px solid rgba(0, 0, 0, .125);
    background-color: #2d0361;
    color: #ffffff;
}

.custom-ps-stage {
    padding-left: .25rem !important
}

.custom-ps-child {
    padding-left: 2.2rem !important;
}

.custom-ps-field {
    padding-left: 4.5rem !important;
}

.modal {
    z-index: 1050 !important;
}

.modal-backdrop {
    z-index: 1040 !important;
}

/* Styles for the chevron icon */
.chevron {
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: 8px;
    vertical-align: middle;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 8px solid #fff; /* Down arrow */
    transition: transform 0.3s;
}

    /* Rotate the chevron when expanded */
    .chevron.up {
        transform: rotate(180deg); /* Up arrow */
    }


.appTracker #appType {
    font-size: 22px !important;
    font-weight: 700
}

.appTracker #lastUpdatedDtae {
    font-size: 16px !important;
}

.appTracker .card-body {
    background-color: #EFF0F0 !important;
}

.appTracker .status-text {
    font-size: 14px !Important;
}


.pt-completed-circle {
    width: 28px; /* Adjust size as needed */
    height: 28px; /* Adjust size as needed */
    background-color: #D72882; /* Adjust color as needed */
    border-radius: 50%;
    display: inline-block;
    position: relative; /* Added to allow absolute positioning inside */
}

    .pt-completed-circle::after {
        content: '\2713'; /* Unicode for checkmark */
        color: white; /* Set checkmark color to white */
        font-size: 16px; /* Adjust the size as needed */
        font-weight: bold; /* Make the checkmark bold */
        position: absolute; /* Position it inside the circle */
        top: 50%; /* Center vertically */
        left: 50%; /* Center horizontally */
        transform: translate(-50%, -50%); /* Adjust for perfect centering */
    }

.pt-not-completed-circle {
    width: 28px; /* Adjust size as needed */
    height: 28px; /* Adjust size as needed */
    border: 2px solid #6c757d; /* Border color and thickness */
    border-radius: 50%; /* Makes it a circle */
    display: inline-block;
    position: relative; /* Allows positioning of the checkmark inside */
    background-color: #fff; /* Ensures the circle is empty */
}

    .pt-not-completed-circle::before {
        content: "";
        position: absolute;
        top: -64px;
        left: 11px;
        width: 2px;
        height: 62px;
        background-color: #ccc;
    }

.pt-partial-completed-circle {
    width: 28px; /* Adjust size as needed */
    height: 28px; /* Adjust size as needed */
    border: 2px solid #6c757d; /* Border color and thickness */
    border-radius: 50%; /* Makes it a circle */
    display: inline-block;
    position: relative; /* Allows positioning of the checkmark inside */
    background-color: #6c757d; /* Ensures the circle is empty */
}

    .pt-partial-completed-circle::before {
        content: "";
        position: absolute;
        top: -64px;
        left: 11px;
        width: 2px;
        height: 62px;
        background-color: #ccc;
    }

.pt-completed-circle::before {
    content: "";
    position: absolute;
    top: -62px;
    left: 13px;
    width: 2px;
    height: 62px;
    background-color: #ccc;
}

.ptstage0::before {
    content: none;
}


