@import url("https://fonts.googleapis.com/css2?family=Baloo+2&display=swap");
body {
  margin: 0;
  background: #ffe4e6;
  font-family: "Baloo 2", cursive;
  color: #333;
  display: flex;
  flex-direction: column;
  min-height: 90vh;
  align-items: center;
  padding: 20px;
}
header {
  font-size: 3rem;
  color: #ff6f91;
  margin-bottom: 20px;
  text-shadow: 2px 2px #ffb6b9;
}
button {
  background-color: #ff6f91;
  border: none;
  color: white;
  border-radius: 15px;
  padding: 8px 15px;
  cursor: pointer;
  font-weight: bold;
  margin: 0 10px;
  box-shadow: 1px 1px 5px #ffb6b9;
  transition: background-color 0.3s ease;
}
button:hover {
  background-color: #ff466f;
}
.container {
  max-width: 900px;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.cat-card {
  background: #fff0f5;
  border-radius: 30px;
  box-shadow: 0 10px 20px rgba(255, 111, 145, 0.3);
  margin: 15px;
  padding: 15px;
  width: 260px;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}
.cat-card img {
  border-radius: 20px;
  width: 240px;
  height: 180px;
  object-fit: cover;
  box-shadow: 0 5px 10px rgba(255, 111, 145, 0.5);
}
.cat-actions {
  margin-top: 10px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
}
.tabs {
  margin-bottom: 20px;
}
.tabs button {
  margin-right: 15px;
  font-size: 1.1rem;
}
.footer {
  margin-top: auto;
  font-size: 0.9rem;
  color: #ff466f;
  font-weight: 600;
}
p.message {
  font-size: 1.3rem;
  color: #ff466f;
}
