body {
    font-family: 'Segoe UI', sans-serif;
    background: linear-gradient(to bottom, #e6f7f1, #ffffff);
    margin: 0;
    padding: 20px;
    color: #333;
    text-align: center;
  }
  
  .garden-container {
    max-width: 800px;
    margin: auto;
    padding: 20px;
  }
  
  input {
    padding: 10px;
    width: 60%;
    border-radius: 8px;
    border: 1px solid #ccc;
  }
  
  button {
    padding: 10px 20px;
    background-color: #6bbf59;
    color: white;
    border: none;
    border-radius: 8px;
    margin-left: 10px;
    cursor: pointer;
    font-weight: bold;
  }
  
  button:hover {
    background-color: #57a947;
  }
  
  .garden {
    margin-top: 30px;
    min-height: 200px;
    background-color: #e0fce5;
    border-radius: 10px;
    padding: 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
  }
  
  .flower {
    background-color: #fff0f5;
    padding: 15px;
    border-radius: 50%;
    width: 100px;
    height: 100px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 0.9rem;
    animation: bloom 0.8s ease-out;
  }
  
  @keyframes bloom {
    0% { transform: scale(0.2); opacity: 0; }
    100% { transform: scale(1); opacity: 1; }
  }
  
  #log {
    list-style: none;
    padding: 0;
    max-height: 200px;
    overflow-y: auto;
  }
  