﻿#processTrackerContainer {
    position: absolute;
    top: -1px;
    right: 55px;
    z-index: 9999;
}

#processIcon {
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    padding: 10px;
    position: relative;
}

    #processIcon svg {
        fill: #555555; /* Icon color */
        width: 20px;
        height: 20px;
    }

#processTrackerIcon {
    position: relative;
    background: transparent;
    border: none;
    cursor: pointer;
}

#processCount {
    font-weight: bold;
    font-size: 12px;
    color: #ffffff;
    background-color: #ff0000; /* Red badge for alert count */
    border-radius: 50%;
    width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 3px;
    right: 5px;
}

#processDetails {
    display: none;
    position: absolute;
    top: 40px;
    right: 0;
    background: white;
    border: 1px solid #ddd;
    border-radius: 5px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    padding: 10px;
    width: 250px;
}

.toast-message {
    position: fixed;
    top: 60px;
    right: 10px;
    z-index: 1100;
    max-width: 300px;
    margin-bottom: 10px;
    border-radius: 5px;
    padding: 10px;
    color: white;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
}

#processList {
    margin: 0;
    padding: 0;
    list-style-type: none;
}