.unsaved-label {
    color: #3498db;
    font-weight: 300;
    font-size: 0.6rem;
    margin-right: 6px;
}

/* Styles for different urgency levels */
.unsaved-badge-low {
    background-color: gold;
    color: steelblue;
    font-weight: bold;
    font-size: 0.75rem;
    padding: 2px 8px;
    border-radius: 10px;
    display: inline-block;
}

.unsaved-badge-mid {
    background-color: orange;
    color: steelblue;
    font-weight: bold;
    font-size: 0.75rem;
    padding: 2px 8px;
    border-radius: 10px;
    display: inline-block;
}

.unsaved-badge-high {
    background-color: #e53935;
    color: white;
    font-weight: bold;
    font-size: 0.75rem;
    padding: 2px 8px;
    border-radius: 10px;
    display: inline-block;
}

.unsaved-badge-critical {
    background-color: #b71c1c;
    color: white;
    font-weight: bold;
    font-size: 0.75rem;
    padding: 2px 8px;
    border-radius: 10px;
    display: inline-block;
}

/* Pulse animation for 15+ */
@keyframes pulse {
    0%   { transform: scale(1); }
    50%  { transform: scale(1.4); }
    100% { transform: scale(1); }
}

.pulse {
    animation: pulse 1.5s infinite;
}
