/* Icon Boxes */

.icon-gradient {
  background: var(--gradient-primary);
  color: white;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s;
}

.icon-gradient:hover {
  transform: scale(1.1);
}

.icon-accent {
  background-color: rgba(0, 188, 212, 0.1);
  color: var(--accent);
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.icon-stat {
  font-size: 1.875rem;
  color: var(--accent);
}

/* Icon Box Variants */

.icon-box-xs {
  width: 32px;
  height: 32px;
  background-color: hsla(210, 100%, 45%, 0.1);
}

.icon-box-sm {
  width: 40px;
  height: 40px;
  border-radius: 0.5rem;
}

.icon-box-sm-gradient {
  background: linear-gradient(135deg, hsl(210, 100%, 45%), hsl(185, 85%, 50%));
}

.icon-box-sm-light {
  background-color: hsla(210, 100%, 45%, 0.1);
}

.icon-box-md {
  width: 48px;
  height: 48px;
  border-radius: 0.5rem;
  background: linear-gradient(135deg, hsl(210, 100%, 45%), hsl(185, 85%, 50%));
  color: white;
}

.icon-box-lg {
  width: 64px;
  height: 64px;
  border-radius: 0.5rem;
  background: linear-gradient(135deg, hsl(210, 100%, 45%), hsl(185, 85%, 50%));
  color: white;
}
