.role-switch {
    position: fixed;
    top: 50%;
    right: -10px;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    background: #0a335c;
    border-radius: 10px 0 0 10px;
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.25);
    overflow: hidden;
    z-index: 1000;
}

.role-switch button {
    all: unset;
    cursor: pointer;
    padding: 12px 12px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    background: #ffffff;
    color: #0a335c;
    transition: background 0.2s ease, color 0.2s ease;
    white-space: nowrap;
}


.role-switch button:not(.active):hover {
    background: rgba(255, 255, 255, 0.85);
}

.role-switch button.active {
    background: #0a335c;
    color: #ffffff;
}
