/* Modern No Results Message Styles */
.modern-no-results {
  background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%);
  border-radius: 16px;
  padding: 60px 40px;
  text-align: center;
  margin: 40px 0;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  border: 1px solid #e5e7eb;
}

.modern-no-results-icon {
  width: 120px;
  height: 120px;
  margin: 0 auto 24px;
  background: linear-gradient(135deg, #FFD700 0%, #FFA500 50%, #FF8C00 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 16px rgba(255, 165, 0, 0.2);
  animation: pulse 2s ease-in-out infinite;
}

.modern-no-results-icon i {
  font-size: 60px;
  color: #fff;
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

.modern-no-results-title {
  font-size: 28px;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 16px;
  line-height: 1.3;
}

.modern-no-results-text {
  font-size: 16px;
  color: #6b7280;
  margin-bottom: 32px;
  line-height: 1.6;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.modern-no-results-suggestions {
  background: #f9fafb;
  border-radius: 12px;
  padding: 24px;
  margin-top: 32px;
  text-align: left;
  border: 1px solid #e5e7eb;
}

.modern-no-results-suggestions-title {
  font-size: 18px;
  font-weight: 600;
  color: #1f2937;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.modern-no-results-suggestions-title i {
  color: #FFA500;
}

.modern-no-results-suggestions-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.modern-no-results-suggestions-list li {
  padding: 12px 0;
  color: #4b5563;
  font-size: 15px;
  line-height: 1.6;
  border-bottom: 1px solid #e5e7eb;
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.modern-no-results-suggestions-list li:last-child {
  border-bottom: none;
}

.modern-no-results-suggestions-list li i {
  color: #FFA500;
  margin-top: 4px;
  flex-shrink: 0;
}

.modern-no-results-action {
  margin-top: 32px;
}

.modern-no-results-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  background: linear-gradient(135deg, #FFD700 0%, #FFA500 50%, #FF8C00 100%);
  color: #fff;
  font-weight: 600;
  font-size: 16px;
  border-radius: 8px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 6px rgba(255, 165, 0, 0.2);
}

.modern-no-results-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(255, 165, 0, 0.3);
  color: #fff;
  text-decoration: none;
}

.modern-no-results-btn:active {
  transform: translateY(0);
}

.modern-no-results-btn i {
  font-size: 18px;
}

/* Responsive */
@media (max-width: 768px) {
  .modern-no-results {
    padding: 40px 24px;
    margin: 24px 0;
  }

  .modern-no-results-icon {
    width: 100px;
    height: 100px;
    margin-bottom: 20px;
  }

  .modern-no-results-icon i {
    font-size: 50px;
  }

  .modern-no-results-title {
    font-size: 24px;
  }

  .modern-no-results-text {
    font-size: 15px;
  }

  .modern-no-results-suggestions {
    padding: 20px;
  }

  .modern-no-results-suggestions-title {
    font-size: 16px;
  }

  .modern-no-results-suggestions-list li {
    font-size: 14px;
  }

  .modern-no-results-btn {
    padding: 12px 24px;
    font-size: 15px;
  }
}

