.empty-state {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 3rem;
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  background-color: #fafafa;
  max-width: 400px;
  margin: 2rem auto;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  text-align: center;
  color: #333;
}

.empty-state img {
  width: 80px;
  height: 80px;
  margin-bottom: 1rem;
  opacity: 0.6;
}

.empty-state h2 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.empty-state p {
  font-size: 1rem;
  color: #666;
  margin-bottom: 1rem;
}

.create-button {
  background-color: #00b6b0;
  color: white;
  padding: 0.6rem 1.2rem;
  font-size: 1rem;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.2s ease-in-out;
}

.create-button:hover {
  background-color: #009f9a;
}
