/**
 * 自動切換指示器樣式
 * 整合到場次選擇器旁邊
 */

/* 自動切換指示器 - 整合到場次選擇器 */
.auto-switch-indicator {
    display: inline-flex;
    align-items: center;
    margin-left: 8px;
    font-size: 16px;
    cursor: help;
    transition: opacity 0.3s ease;
    opacity: 0.7;
    vertical-align: middle;
}

.auto-switch-indicator:hover {
    opacity: 1;
}

/* 暫停狀態 */
.auto-switch-indicator.paused {
    opacity: 0.3;
    filter: grayscale(100%);
}

/* 提示框樣式 */
.auto-switch-indicator:hover::after {
    content: attr(title);
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.9);
    color: white;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 12px;
    white-space: nowrap;
    z-index: 1000;
    pointer-events: none;
}

/* 場次切換器容器調整 */
.quick-session-switcher {
    display: flex;
    align-items: center;
    gap: 8px;
    position: relative;
}

.quick-session-switcher .session-select {
    min-width: 150px;
}

/* 切換時的簡單提示效果 */
.auto-switch-indicator.switching {
    color: #4CAF50;
    opacity: 1;
}