.text-color-black {
    color: #000000;
}

.text-color-gray {
    color: #404040
}

.text-color-light-gray {
    color: #707070;
}

.background-color-beige {
    background-color: #F6F5F2;
}

.breadcrumb-link {
    text-decoration: none;
}

.w-min-100px {
    min-width: 100px;
}

/* SIDEBAR */
#dippSidebarOverride .nav-pills .nav-link {
    position: relative;
    color: #707070;
    padding-top: 16px;
    padding-bottom: 16px;
    border-radius: 0;
    /*semibold*/
    font-weight: 600;
}

#dippSidebarOverride .nav-link.active {
    background-color: #F6F5F2;
    color: #000000;
}

/* Red accent border for active item */
#dippSidebarOverride .nav-pills .nav-link.active::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 8px;
    background-color: #C4000B;
    /* Red border */
}

#dippSidebarOverride .nav-link i {
    margin-right: 8px;
}

.sidebar {
    background-color: #FFFFFF;
    padding-top: 20px;
    padding-bottom: 20px;
}

.black-border {
    border-color: #000000 !important
}

.dashboard-square-button {
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    border: solid 1px black;
    border-radius: 5px;
    justify-content: center;
    text-decoration: none;
    color: black;
}


/* PROJECTS LIST */
#projectsTableHeaderRow th {
    background-color: #F5F5F5;
}

#projectsTable tr {
    cursor: pointer;
}


/* PROJECT DETAIL */
#projectDetailNav .nav-tabs {
    border-bottom: 2px solid #ddd;
}

/* Default tab link */
#projectDetailNav .nav-tabs .nav-link {
    border: none;
    color: #555;
    position: relative;
    font-size: 20px;
}


/* ACTIVE TAB FONT CHANGE */
#projectDetailNav .nav-link.active {
    color: black;
    background-color: transparent;
}

/* ACTIVE TAB UNDERLINE */
#projectDetailNav .nav-link.active::after {
    content: "";
    display: block;
    height: 2px;
    position: absolute;
    bottom: -1px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #C4000B;
    width: 100%;
}

.status-initial {
    color: #60a5fa;
    /* Light Blue */
}

.status-input {
    color: #facc15;
    /* Yellow */
}

.status-waiting {
    color: #a78bfa;
    /* Purple */
}

.status-attention {
    color: #f97316;
    /* Orange */
}

.status-completed {
    color: #22c55e;
    /* Green */
}

.status-failed {
    color: #dc2626;
    /* Red or dark gray if preferred */
}

.notification-item {
    padding-bottom: 0.5rem;
    margin-bottom: 0.5rem;
    border-bottom: 1px solid #ddd;
}

.notification-item:last-child {
    border-bottom: none;
}

.min-h-0 {
    min-height: 0;
}

.min-w-0 {
    min-width: 0;
}