body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 1rem;
    background: #f6f6f6;
    color: #333;
  }
  
  .container {
    max-width: 600px;
    margin: auto;
    background: white;
    padding: 1rem;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
  }
  
  h1, h2 {
    text-align: center;
  }
  
  form {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    margin-bottom: 1rem;
  }
  
  input[type="text"],
  input[type="file"],
  select,
  button {
    padding: 0.5rem;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 1rem;
  }
  
  button {
    background: #007bff;
    color: white;
    border: none;
    cursor: pointer;
  }
  
  button:hover {
    background: #0056b3;
  }
  
  ul#entry-list {
    list-style: none;
    padding: 0;
  }
  
  ul#entry-list li {
    padding: 0.5rem;
    border-bottom: 1px solid #eee;
  }
  