/* ===========================================================
 * 📄 File: style-empty.css
 * 🎯 Purpose: Universal Empty State (No Data UI)
 * =========================================================== */

.empty-state {
  text-align: center;
  padding: 40px 20px;
  color: #555;
  font-family: 'Segoe UI', sans-serif;
  max-width: 420px;
  margin: 0 auto;
  animation: fadeIn 0.3s ease;
}

.empty-icon {
  width: 90px;
  height: 90px;
  margin: 0 auto 12px;
  position: relative;
}

.empty-icon svg {
  width: 100%;
  height: 100%;
  opacity: 0.8;
}

.empty-title {
  font-size: 18px;
  font-weight: 600;
  color: #0073aa;
  margin-bottom: 5px;
}

.empty-text {
  font-size: 14px;
  color: #666;
  margin-bottom: 15px;
}

.empty-btn {
  background: #0073aa;
  color: #fff;
  border: none;
  padding: 8px 15px;
  border-radius: 6px;
  font-size: 13.5px;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.1s ease;
}
.empty-btn:hover {
  background: #005f8d;
}
.empty-btn:active {
  transform: scale(0.97);
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}
