/* Add styles here */
body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  margin: 0;
  background-color: #f0f2f5;
  color: #333;
  padding: 1rem;
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent; /* Disable tap highlight on mobile */
}

#refresh-indicator {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  text-align: center;
  background: #fff;
  padding: 10px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  transform: translateY(-100%);
  transition: transform 0.3s ease;
  z-index: 1000;
  font-size: 1.5em;
  color: #ff69b4;
}

#refresh-indicator.visible {
  transform: translateY(0);
}

h1 {
  color: #ff69b4;
  font-size: 2em;
  text-align: center;
  margin-bottom: 2rem;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
}

#suggestion-button {
  background: linear-gradient(45deg, #ff69b4, #ffa07a);
  color: white;
  border: none;
  padding: 15px 30px;
  border-radius: 25px;
  font-size: 1.2em;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.2s, box-shadow 0.2s;
}

#suggestion-button:hover, #suggestion-button:active {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

#suggestions-container {
  margin-top: 2rem;
  background-color: white;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  width: 100%;
  max-width: 500px;
  box-sizing: border-box;
  opacity: 0; /* Start hidden for animation */
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

#suggestions-container.visible {
  animation: fadeIn 0.5s forwards;
}

#suggestions-container ul {
  list-style-type: '💖  ';
  padding-left: 20px;
}

#suggestions-container li {
  margin-bottom: 10px;
  font-size: 1.1em;
  line-height: 1.5;
}

/* Mobile optimizations */
@media (max-width: 600px) {
  h1 {
    font-size: 1.5em;
  }

  body {
    padding: 0.5rem;
  }

  #suggestion-button {
    padding: 12px 25px;
    font-size: 1em;
  }

  #suggestions-container {
    width: 95%;
  }
}
