 body {
      margin: 0;
      font-family: Arial, sans-serif;
      line-height: 1.6;
    }

    main {
      text-align: center;
      max-width: 400px;
      margin: 40px auto;
      padding: 0 20px;
    }

    h1 {
      font-size: 24px;
      margin-bottom: 20px;
      font-weight: bold;
    }

    p {
  margin: 20px auto;
  max-width: 800px;
  text-align: center;
}

    form {
      display: flex;
      flex-direction: column;
      gap: 10px;
      margin: 20px 0;
    }

    input[type="text"], input[type="number"], input[type="file"] {
      padding: 10px;
      border: 1px solid #ccc;
      border-radius: 4px;
      width: 100%;
      box-sizing: border-box;
    }

    button {
      padding: 10px;
      background: #3498db;
      color: #fff;
      border: none;
      border-radius: 4px;
      cursor: pointer;
    }

    button:hover {
      background: #2980b9;
    }

    ul {
      list-style: none;
      padding: 0;
    }

    li {
      margin: 10px 0;
      padding: 10px;
      border: 1px solid #ddd;
      border-radius: 5px;
      display: flex;
      align-items: center;
      justify-content: space-between;
    }

    .item-info {
      flex: 1;
      text-align: left;
    }

    .item-name {
      font-weight: bold;
    }

    .item-img {
      max-width: 80px;
      max-height: 80px;
      margin-left: 15px;
      border-radius: 5px;
      object-fit: cover;
    }
