/* Stage Markers */
.stage-marker {
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    margin-right: 8px;
}

.stage-interested {
    background: #619af6;  /* Bright blue */
}

.stage-cq {
    background: var(--accent);  /* Red */
}

.stage-submitted {
    background: var(--secondary);  /* Orange */
}

.stage-invoiced {
    background: #6366f1;  /* Indigo */
}

.stage-paid {
    background: #22c55e;  /* Green */
}

.stage-published {
    background: #9333ea;  /* Purple */
}

.stage-cc {
    background: #9ca3af;  /* Light gray */
}

.stage-wd {
    background: #4b5563;  /* Dark gray */
}