/* Candidate shortlist star (golden theme) */
.candidate-shortlist-toggle {
    text-decoration: none;
    color: #c9a227; /* muted gold */
}

.candidate-shortlist-toggle i {
    font-size: 1.35rem;
    color: inherit;
    transition: color 0.15s ease-in-out, transform 0.15s ease-in-out;
}

/* Hover / focus */
.candidate-shortlist-toggle:hover i,
.candidate-shortlist-toggle:focus i {
    color: #f1c40f; /* brighter gold */
    transform: scale(1.1);
}

/* Selected state */
.candidate-shortlist-toggle.is-selected i {
    color: #f5c542; /* rich gold */
    font-weight: 900;
}

/* Selected + hover */
.candidate-shortlist-toggle.is-selected:hover i {
    color: #ffd75e;
}

/* Sticky selections bar */
.sticky-selections-bar{
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1060;
    background: rgba(255,255,255,0.98);
    border-top: 2px solid #43165e;
    padding: 10px 0;
    box-shadow: 0 -6px 18px rgba(0,0,0,0.12);
}

body.has-sticky-selections{
    padding-bottom: 86px;
}

.sticky-selections-list{
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.sticky-role-badge{
    display: inline-block;
    background: #f4f4f4;
    border: 1px solid rgba(67, 22, 94, 0.25);
    border-radius: 999px;
    padding: 4px 10px;
    font-size: 0.9rem;
}

.sticky-role-title{
    font-weight: 700;
    color: #43165e;
}

/* Role seat guidance badge */
.role-seat-guidance {
    font-size: 0.95rem;
    font-weight: 700;
}

/* Make sticky badges feel interactive */
.sticky-role-badge {
    cursor: pointer;
    user-select: none;
}

.sticky-role-badge:hover {
    filter: brightness(0.97);
}

/* Flash highlight when jumping to a role */
.role-header-flash {
    box-shadow: 0 0 0 3px rgba(255,255,255,0.25), 0 0 0 6px rgba(67, 22, 94, 0.35);
    transition: box-shadow 0.2s ease-in-out;
}