/* Empty State Styling for Listing Pages */
.no-results {
  text-align: center;
  padding: 80px 20px;
  min-height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.no-results p {
  font-size: 24px;
  font-weight: 600;
  color: #666;
  margin: 0;
  line-height: 1.5;
}

.empty-state-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 300px;
  padding: 60px 20px;
}

.empty-state-card {
  max-width: 640px;
  width: 100%;
  background-color: #fff;
  border-radius: 12px;
  border: 1px solid #e8e8e8;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.06);
  text-align: center;
  padding: 36px 24px;
}

.empty-state-desc {
  margin: 0 0 20px;
  color: #2a2a2a;
  font-size: 18px;
  line-height: 1.6;
}

.translation-missing-text {
  font-size: 22px;
  font-weight: 800;
}

.empty-state-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  border-radius: 8px;
  background-color: var(--primary-color, hsla(314, 69%, 34%, 1));
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  transition: background-color 0.2s ease;
}

.empty-state-btn:hover {
  background-color: #7f1a61;
  color: #fff;
}

@media (max-width: 768px) {
  .no-results {
    padding: 60px 20px;
    min-height: 200px;
  }
  
  .no-results p {
    font-size: 20px;
  }

  .empty-state-wrap {
    min-height: 220px;
    padding: 40px 16px;
  }

  .empty-state-card {
    padding: 28px 18px;
  }

  .empty-state-desc {
    font-size: 16px;
  }

  .translation-missing-text {
    font-size: 20px;
  }
}
