/* 实时队列弹窗样式 */
.queue-modal-bg {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.45);
    z-index: 1000;
    display: flex;
    justify-content: flex-end;
    align-items: flex-start;
}
.queue-modal {
    background: #2d3748;
    color: #e2e8f0;
    border-radius: 1rem 0 1rem 1rem;
    box-shadow: 0 0 20px rgba(0,123,255,0.5);
    margin: 2.5rem 2.5rem 0 0;
    width: 320px;
    max-width: 90vw;
    max-height: 70vh;
    overflow-y: auto;
    padding: 1.2rem 1.2rem 1.2rem 1.2rem;
    position: relative;
    animation: slideInLeft 0.35s cubic-bezier(.4,2,.6,1) forwards;
}
.queue-modal-close {
    position: absolute;
    top: 0.7rem;
    right: 1rem;
    font-size: 1.5rem;
    color: #e2e8f0;
    cursor: pointer;
}
.queue-modal-title {
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 1rem;
    text-align: left;
}
.queue-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.queue-list li {
    padding: 0.5rem 0.2rem;
    border-bottom: 1px solid #4a5568;
    font-size: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.queue-list li:last-child {
    border-bottom: none;
}
.queue-number {
    color: #38bdf8;
    font-weight: bold;
    margin-right: 0.5rem;
}
.queue-time {
    color: #a0aec0;
    font-size: 0.95em;
}
.queue-chadui {
    color: #e53e3e;
    font-size: 0.95em;
    margin-left: 0.5em;
}
@keyframes slideInLeft {
    from { transform: translateX(120%); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}
