/* EMPTY STATE */
.empty-state {
  margin-top: 4rem;
}

.empty-state-card {
  padding: 2.5rem;
  border-radius: 1rem;
  text-align: center;
  background: linear-gradient(90deg, #eff6ff, #eef2ff);
  border: 1px solid #dbeafe;
}

/* ICON */
.empty-state-icon {
  width: 4rem;
  height: 4rem;
  margin: 0 auto 1.5rem;
  border-radius: 50%;
  background-color: #dbeafe;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
}

.empty-state-icon span {
  font-size: 2rem;
}

/* TEXT */
.empty-state-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #111618;
  margin-bottom: 0.75rem;
}

.empty-state-text {
  max-width: 520px;
  margin: 0 auto 2rem;
  font-size: 1rem;
  color: #4b5563;
  line-height: 1.6;
}

/* BUTTON */
.empty-state-button {
  height: 3rem;
  padding: 0 1.5rem;
  border-radius: 0.5rem;
  border: none;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  background-color: #111618;
  color: #ffffff;
  transition: opacity 0.2s ease;
}

.empty-state-button:hover {
  opacity: 0.9;
}
