/**
 * Order Details Table Styles
 */
.title {
  font-size: 1.3125rem;
  text-transform: uppercase;
  text-align: center;
  color: #333;
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
}
.subtitle {
  font-size: 1.125rem;
  color: #232323;
  margin-bottom: 1.5rem;
}
.order-details-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 16px;
  margin: 0;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}
.order-details-table thead tr th {
  background-color: #000;
  color: #fff;
}

.order-details-table th,
.order-details-table td {
  padding: 12px 15px;
  border: 1px solid #e0e0e0;
  text-align: left;
}

.order-details-table th {
  background-color: #f8f9fa;
  font-weight: 600;
  color: #333;
  font-size: 14px;
  letter-spacing: 0.5px;
}

.order-details-table tr:nth-child(even) {
  background-color: #f9f9f9;
}

.order-details-table tr:hover {
  background-color: #f3f3f3;
}

@media screen and (max-width: 768px) {
  .order-details-table {
    font-size: 14px;
  }

  .order-details-table th,
  .order-details-table td {
    padding: 8px 10px;
  }

  .order-details-table th {
    font-size: 12px;
  }
}
