/* ft-iotunnel custom styles */

/* Smooth transitions for device cards */
.device-card {
    transition: all 0.2s ease;
}

/* Pulse animation for online status */
@keyframes pulse-dot {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

/* Touch-friendly tap targets */
@media (pointer: coarse) {
    button, a {
        min-height: 44px;
        min-width: 44px;
    }
}

/* Scrollbar styling for terminal */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: transparent;
}
::-webkit-scrollbar-thumb {
    background: #4b5563;
    border-radius: 4px;
}
