.backstage-event-switcher {
    width: 250px;
    margin: 0 16px;
    position: relative;
}

.bes__current {
    background: #1D1D1F;
    padding-right: 8px;
    border-radius: 24px;
    cursor: pointer;
}

.bes__search-container {
    position: sticky;
    top: 0;
    background: #1d1d1f;
    padding: 8px 12px;
    border-bottom: 1px solid #2f3236;
    display: flex;
    align-items: center;
    gap: 8px;
    z-index: 10;
}

.bes__search-icon {
    color: #fff;
    opacity: 0.5;
    font-size: 16px;
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

.bes__search-input {
    flex: 1;
    background: #2f3236;
    border: 1px solid #404449;
    border-radius: 4px;
    padding: 6px 8px;
    color: #fff;
    font-size: 13px;
    outline: none;
    transition: all 0.2s ease-in-out;
}

.bes__search-input::placeholder {
    color: #999;
    opacity: 0.7;
}

.bes__search-input:focus {
    background: #232324;
    border-color: #4ef6b1;
    box-shadow: 0 0 0 2px rgba(78, 246, 177, 0.1);
}

.bes__search-clear {
    color: #fff;
    opacity: 0.5;
    font-size: 16px;
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    cursor: pointer;
    transition: all 0.2s ease-in-out;
}

.bes__search-clear:hover {
    opacity: 1;
    color: #4ef6b1;
    transform: scale(1.1);
}

.bes__current_frozen {
    background: #1D1D1F;
    padding-right: 8px;
    border-radius: 24px;
}

.bes__current .dashicons {
    margin-left: auto;
    color: #fff;
    font-size: 16px;
    width: 16px;
    height: 16px;
}

.bes__options {
    position: absolute;
    background: #1d1d1f;
    width: 100%;
    border-radius: 8px;
    box-sizing: border-box;
    top: calc(100% + 5px);
    box-shadow: 0px 0 30px 10px #0000007a;
    border: 1px solid #2f3236;
    display: none;
}

.bes__option {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 6px 8px;
    text-decoration: none;
}

.bes__option_frozen {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 6px 8px;
    text-decoration: none;
}

.bes__option.--active {
    background: #232324;
    pointer-events: none;
}

.bes__option.--active .dashicons {
    margin-left: auto;
    color: #4ef6b1;
    font-size: 24px;
    width: 24px;
    height: 22px;
}


.bes__option__image-link {
    display: block;
    text-decoration: none;
    flex-shrink: 0;
    pointer-events: auto;
    position: relative;
    z-index: 1;
}

.bes__option__image {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: black;
    flex-shrink: 0;
}

.bes__option__image img {
    object-fit: contain;
    width: 32px;
    height: 32px !important;
    border-radius: 100%;
    overflow: hidden;
}

.bes__option__title {
    font-size: 14px;
    color: #fff;
    line-height: 2;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.bes__options .bes__option:hover .bes__option__title{
    color: #4ef6b1;
}

/* Admin link styles */
.bes__admin-link {
    border-bottom: 1px solid #2f3236;
    margin-bottom: 6px;
    padding: 8px 12px !important;
    border-radius: 4px;
    transition: all 0.2s ease-in-out;
    position: relative;
}

.bes__admin-link .bes__option__image {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #2f3236 0%, #3a3d42 100%);
    border: 1px solid #404449;
    transition: all 0.2s ease-in-out;
}

.bes__admin-link .bes__option__image .dashicons {
    font-size: 18px;
    width: 18px;
    height: 18px;
    transition: all 0.2s ease-in-out;
}

.bes__admin-link .bes__option__title {
    font-weight: 500;
    letter-spacing: 0.025em;
}

.bes__admin-link:hover {
    background: linear-gradient(135deg, #232324 0%, #2a2b2c 100%);
    border-bottom-color: #4ef6b1;
    transform: translateY(-1px);
}

.bes__admin-link:hover .bes__option__image {
    background: linear-gradient(135deg, #4ef6b1 0%, #3dd49a 100%);
    border-color: #4ef6b1;
    box-shadow: 0 0 8px rgba(78, 246, 177, 0.3);
}

.bes__admin-link:hover .bes__option__image .dashicons {
    color: #1d1d1f;
    transform: scale(1.1);
}

.bes__admin-link:hover .bes__option__title {
    color: #4ef6b1;
    text-shadow: 0 0 8px rgba(78, 246, 177, 0.2);
}

.bes__admin-link .dashicons-external {
    margin-left: auto;
    font-size: 14px;
    width: 14px;
    height: 14px;
    opacity: 0.6;
    transition: all 0.2s ease-in-out;
}

.bes__admin-link:hover .dashicons-external {
    opacity: 1;
    color: #4ef6b1;
    transform: translateX(2px);
}

/* Separator styles */
.bes__separator {
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, #2f3236 20%, #2f3236 80%, transparent 100%);
    margin: 8px 0;
    position: relative;
}

.bes__separator::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(78, 246, 177, 0.1) 50%, transparent 100%);
}

/* Enhanced regular option hover states */
.bes__options .bes__option:not(.bes__admin-link):hover {
    background: #232324;
    transition: all 0.2s ease-in-out;
}

.bes__options .bes__option:not(.bes__admin-link):hover .bes__option__image {
    transform: scale(1.05);
    transition: all 0.2s ease-in-out;
}

/* Active state enhancements */
.bes__option.--active {
    background: linear-gradient(135deg, #232324 0%, #2a2b2c 100%);
    border-left: 3px solid #4ef6b1;
    padding-left: 5px !important;
}

/* Override theme colors for better visibility on dark background */
.bes__admin-link .dashicons[class*="cbs-theme"][class*="backend-fontcolor-secondary"] {
    color: #ffffff !important;
}

.bes__admin-link .dashicons-external[class*="cbs-theme"][class*="backend-fontcolor-secondary"] {
    color: #ffffff !important;
    opacity: 0.6;
}

.bes__admin-link:hover .dashicons[class*="cbs-theme"][class*="backend-fontcolor-secondary"] {
    color: #1d1d1f !important;
}

.bes__admin-link:hover .dashicons-external[class*="cbs-theme"][class*="backend-fontcolor-secondary"] {
    color: #4ef6b1 !important;
    opacity: 1;
}