/* non-block-theme.css */

/* Container styling */
.extendons-thank-you-header {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1.5rem;
    background-color: #ffffff;
  }
  
  /* Thank You Notice */
  .thank-you-notice {
    font-size: 1.5rem;
    text-align: center;
    margin-bottom: 1.5rem;
    color: #333333;
  }
  
  /* Order Details Table */
  .extendons-thank-you-header-order-details {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 1.5rem;
  }
  
  .extendons-thank-you-header-order-details thead th {
    background-color: #0073aa;
    color: #ffffff;
    padding: 0.75rem;
    text-align: left;
    font-weight: 600;
  }
  
  .extendons-thank-you-header-order-details tbody td {
    padding: 0.75rem;
    border: 1px solid #ddd;
    color: #333333;
  }
  
  /* Zebra striping for rows */
  .extendons-thank-you-header-order-details tbody tr:nth-child(odd) {
    background-color: #f1f1f1;
  }
  .extendons-thank-you-header-order-details tbody tr:nth-child(even) {
    background-color: #ffffff;
  }
  
  /* Responsive adjustments */
  @media (max-width: 768px) {
    .thank-you-notice {
      font-size: 1.25rem;
    }
    .extendons-thank-you-header-order-details thead th,
    .extendons-thank-you-header-order-details tbody td {
      padding: 0.5rem;
    }
  }
  