/* 自定义样式补充 */
@media (max-width: 768px) {
    .container {
        padding: 1rem;
    }
}

/* 动画效果 */
@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

.animate-pulse {
    animation: pulse 2s infinite;
}

/* 按钮悬停效果 */
button {
    transition: all 0.3s ease;
}

button:hover {
    transform: translateY(-2px);
}

/* 图表容器响应式调整 */
#chartContainer {
    min-height: 300px;
    width: 100% !important;
}

/* 状态指示器样式 */
#connectionStatus i {
    transition: color 0.3s ease;
}

/* 警报按钮活跃状态 */
#alertBtn.active {
    background-color: rgb(239, 68, 68);
}

/* 数值显示区域样式 */
#currentPressure {
    transition: color 0.3s ease;
}

/* 设备连接状态指示器 */
.status-connected i {
    color: rgb(34, 197, 94);
}
