body {
    font-family: Arial, sans-serif;
    max-width: 600px;
    margin: 20px auto;
    padding: 0 20px;
  }

  .form-group {
    margin-bottom: 1.5rem;
  }

  label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: bold;
  }

  input[type="text"],
  input[type="datetime-local"],
  select {
    width: 100%;
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
  }

  .satiety-scale {
    display: flex;
    gap: 5px;
    flex-wrap: wrap;
  }

  .scale-number {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border: 2px solid transparent;
    font-size: 0.9rem;
    transition: all 0.2s ease;
  }

  .scale-number.active {
    border-color: #757575; /* Changed from #000 to a milder color */
    transform: scale(1.1);
    /* Add these new properties */
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
    font-weight: bold;
    /* Darken the background color when selected */
    filter: brightness(0.85);
  }

  #tags {
    height: 120px;
  }

  button {
    background-color: #4caf50;
    color: white;
    padding: 12px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    width: 100%;
    font-size: 16px;
  }

  button:hover {
    background-color: #45a049;
  }

  .image-container {
    display: flex;
    gap: 20px;
    margin-top: 20px;
  }

  .image-container img {
    width: 50%;
    height: auto;
  }