/* Sensor Import Button Styles */

.btn-info {
    background: rgba(59, 130, 246, 0.2);
    border: 1px solid rgba(59, 130, 246, 0.3);
    color: #3b82f6;
    font-weight: 500;
    padding: 8px 14px;
    border-radius: 6px;
    font-size: 13px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-info:hover:not(:disabled) {
    background: rgba(59, 130, 246, 0.3);
    border-color: rgba(59, 130, 246, 0.5);
}

.btn-info:active {
    background: rgba(59, 130, 246, 0.35);
}

.btn-info:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}
