/* Nové styly pro statusový indikátor */
.status-indicator {
    /* position: fixed; */
    /* bottom: 20px; */
    /* right: 20px; */
    display: flex;
    align-items: center;
    padding: 8px 15px;
    border-radius: 50px;
    background-color: #f8f9fa;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 1050; /* Aby byl nad ostatními prvky */
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

.status-indicator:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.status-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    margin-right: 10px;
    transition: background-color 0.3s ease;
}

.status-dot.connected {
    background-color: #28a745; /* Zelená pro připojeno */
}

.status-dot.disconnected {
    background-color: #dc3545; /* Červená pro odpojeno */
}

.status-text {
    font-size: 14px;
    font-weight: 500;
    color: #495057;
}

.status-badge {
    margin-left: 10px;
    padding: 3px 8px;
    font-size: 11px;
    font-weight: 600;
    border-radius: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.status-badge.standard {
    background-color: #6c757d;
    color: white;
}

.status-badge.pro {
    background: linear-gradient(45deg, #6a11cb, #2575fc);
    color: white;
} 