body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background-color: #f5f5f5;
}
h1 {
  text-align: center;
  margin-top: 1rem;
}
.grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  padding: 1rem;
}
.card {
  background-color: #ffffff;
  border-radius: 8px;
  padding: 1.5rem;
  width: 150px;
  text-align: center;
  color: #333;
  text-decoration: none;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  transition: transform 0.1s ease;
}
.card:hover {
  transform: translateY(-4px);
}
.card i {
  font-size: 32px;
  margin-bottom: 0.5rem;
  color: #007bff;
}
form {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin: 1rem;
}
#entry-input {
  flex: 1;
  padding: 0.5rem;
}
#entries-list {
  list-style: none;
  padding: 0;
  margin: 0 1rem 2rem 1rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.entry-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.5rem;
  background-color: #fff;
  margin-bottom: 0.5rem;
  border-radius: 4px;
  box-shadow: 0 1px 2px rgba(0,0,0,0.1);
}
.entry-item span {
  flex: 1;
}
.entry-item button {
  margin-left: 0.5rem;
}
.back-link {
  display: block;
  margin: 1rem;
  text-decoration: none;
  color: #007bff;
}


/* Delivery Log form styling */
.delivery-form {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 1rem;
  align-items: flex-end;
  justify-content: flex-start;
}
.delivery-form label {
  display: flex;
  flex-direction: column;
  font-size: 0.9rem;
  margin-right: 0.5rem;
}
.delivery-form input {
  padding: 0.3rem;
  margin-top: 0.2rem;
  min-width: 120px;
}
.delivery-form button {
  padding: 0.5rem 1rem;
}

/* Delivery Log table styling */
.delivery-table {
  width: 100%;
  border-collapse: collapse;
  margin: 1rem;
}
.delivery-table th,
.delivery-table td {
  border: 1px solid #ccc;
  padding: 0.5rem;
  text-align: left;
  font-size: 0.9rem;
}
.delivery-table th {
  background-color: #f0f8ff;
  font-weight: bold;
}
.delivery-table button {
  margin-right: 0.5rem;
  padding: 0.25rem 0.5rem;
}
