.delivery_table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
  font-size: 16px;
}

.delivery_table th,
.delivery_table td {
  border: 1px solid #ccc;
  padding: 10px;
}

.delivery_table th {
  background-color: #f0f0f0;
}

.delivery_table tr:nth-child(even) td {
  background-color: #fafafa;
}

@media screen and (max-width: 768px) {
  .delivery_table {
    font-size: 14px;
  }

  .delivery_table th,
  .delivery_table td {
    padding: 8px;
  }
}