body {
  background-color: #edf6f1;
  color: #152f2a;
  font-family: 'Source Sans Pro', sans-serif;
}

.deliveries-container {
  max-width: 1200px;
  margin: 2rem auto;
  padding: 0 1rem;
}

.page-title {
  color: #28a745;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 2rem;
  text-align: center;
}

.filter-form {
  background-color: #f8f9fa;
  border-radius: 8px;
  padding: 1.5rem;
  margin-bottom: 2rem;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.form-group {
  margin-bottom: 1rem;
}

.form-label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: #495057;
}

.form-select {
  width: 100%;
  padding: 0.5rem;
  border: 1px solid #ced4da;
  border-radius: 4px;
  font-size: 1rem;
  margin-bottom: 1rem;
}

.btn-primary {
  background-color: #28a745;
  border: none;
  padding: 0.5rem 1rem;
  color: white;
  font-weight: 600;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.btn-primary:hover {
  background-color: #218838;
}

.table-responsive {
  overflow-x: auto;
}

.deliveries-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0 0.5rem;
}

.deliveries-table th {
  background-color: #28a745;
  color: white;
  font-weight: 600;
  padding: 1rem;
  text-align: left;
}

.deliveries-table td {
  background-color: white;
  padding: 1rem;
  vertical-align: middle;
}

.deliveries-table tr.bought td {
  background-color: #d4edda;
}

.deliveries-table tr.pending td {
  background-color: #fff3cd;
}

.status-badge {
  display: inline-block;
  padding: 0.25rem 0.5rem;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
}

.status-badge.bought {
  background-color: #28a745;
  color: white;
}

.status-badge.pending {
  background-color: #ffc107;
  color: #212529;
}

.deliveries-table i {
  margin-right: 0.5rem;
  color: #6c757d;
}

.btn-outline-primary {
  color: #28a745;
  border: 1px solid #28a745;
  background-color: transparent;
  padding: 0.375rem 0.75rem;
  font-size: 0.875rem;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.btn-outline-primary:hover {
  color: white;
  background-color: #28a745;
}

@media (max-width: 768px) {
  .deliveries-table th:nth-child(3),
  .deliveries-table td:nth-child(3) {
    display: none;
  }
}

@media (max-width: 576px) {
  .deliveries-table th:nth-child(4),
  .deliveries-table td:nth-child(4) {
    display: none;
  }
}