body {
  margin: 0;
  font-family: 'Segoe UI Emoji', 'Noto Color Emoji', 'Apple Color Emoji', Arial, sans-serif;
  background-color: #fff0f5;
  color: #333;
}

.app-container {
  padding: 20px;
  max-width: 800px;
  margin: auto;
  position: relative;
  z-index: 1;
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 24px;
  font-weight: bold;
}

.toggles label {
  margin-right: 10px;
}

input[type="text"],
input[type="date"],
textarea {
  width: 100%;
  padding: 8px;
  margin: 5px 0 15px 0;
  border-radius: 6px;
  border: 1px solid #ccc;
}

button {
  padding: 10px 15px;
  border: none;
  background-color: #d6336c;
  color: white;
  border-radius: 8px;
  cursor: pointer;
}

button:hover {
  background-color: #b02759;
}

.hidden {
  display: none;
}

/* Floating Hearts */
.floating-hearts {
  position: fixed;
  pointer-events: none;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
}

.heart {
  position: absolute;
  font-size: 24px;
  animation: float 6s linear infinite;
  user-select: none;
  color: red;
  font-family: 'Segoe UI Emoji', 'Noto Color Emoji', 'Apple Color Emoji', sans-serif;
}

@keyframes float {
  0% {
    transform: translateY(100vh) scale(1);
    opacity: 1;
  }
  100% {
    transform: translateY(-10vh) scale(0.5);
    opacity: 0;
  }
}
