.dashboard-page .widget {
  border-radius: 1rem;
  padding: 1.5rem;
  background: #fff;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.06);
}

.dashboard-page .widget-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: #fff;
}

.dashboard-page .widget-body {
  margin-left: 1rem;
}

.dashboard-page .widget-title {
  font-size: 1rem;
  color: #6c757d;
  margin: 0;
}

.dashboard-page .widget-value {
  font-size: 1.8rem;
  font-weight: bold;
  color: #343a40;
  margin-top: 0.25rem;
}

.dashboard-page .card-gradient {
  background: linear-gradient(135deg, #fff5f5 0%, #fed7d7 100%);
}

.dashboard-page .icon-circle {
  width: 60px;
  height: 60px;
  background-color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.dashboard-page .pulse-attention {
  animation: dashboardPulseAttention 2s infinite;
}

@keyframes dashboardPulseAttention {
  0% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.6;
    transform: scale(1.1);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

.dashboard-page .evrak-widget-action {
  text-decoration: none;
}

.dashboard-page .evrak-widget-action:hover .icon-circle {
  transform: scale(1.05);
}
