body .ibox .ibox-content {
  border-radius: 10px;
}

.rounded-10 {
  border-radius: 10px !important;
}

.disabled {
  cursor: none;
  opacity: 50%;
}

.pulse {
  animation: pulse 1s infinite;
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}
