/* 服务器状态组件 - 独立样式 */
.server-status-widget {
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 9999;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 12px;
    background: #f5f7fa;
    border-radius: 20px;
    font-size: 14px;
    color: #333;
    font-family: "Microsoft YaHei", sans-serif;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}
.server-status-widget .status-dot {
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #28a745;
    animation: pulse 2s infinite ease-in-out;
}
@keyframes pulse {
    0% { opacity: 1; }
    50% { opacity: 0.6; }
    100% { opacity: 1; }
}
.server-status-widget .status-dot.busy {
    background: #dc3545;
}
.server-status-widget .status-dot.maintenance {
    background: #ffc107;
}
@media (max-width: 768px) {
    .server-status-widget {
        bottom: 15px;
        left: 15px;
        font-size: 12px;
        padding: 3px 10px;
    }
    .server-status-widget .status-dot {
        width: 8px;
        height: 8px;
    }
}