@charset "utf-8";
/* CSS Document */
  .principles {
    max-width: 500px;
    padding-left: 1.5rem;
    font-family: Arial, sans-serif;
  }

  .principles li {
    margin-bottom: 0.5rem;
    line-height: 1.5;
  }
.card {
    display: flex;
    flex-direction: row;
    gap: 1rem;
    max-width: 500px;
    padding: 1rem;
    border: 1px solid #ddd;
    border-radius: 10px;
    font-family: Arial, sans-serif;
    background: #fff;
  }

  .card img {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: 8px;
  }

  .card-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .card-content h2 {
    margin: 0;
    font-size: 1.25rem;
  }

  .card-content p {
    margin: 0.25rem 0;
  }

  .card-content a {
    color: #0066cc;
    text-decoration: none;
  }

  .card-content a:focus,
  .card-content a:hover {
    text-decoration: underline;
  }

  /* Responsive */
  @media (max-width: 480px) {
    .card {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }

    .card img {
      width: 100px;
      height: 100px;
    }
  }	

  .info-card {
    max-width: 600px;
    padding: 1.5rem;
    border-radius: 12px;
    background: #f2f2f2; /* light grey */
    border: 1px solid #d6d6d6;
    font-family: Arial, sans-serif;
    color: #1a1a1a; /* high contrast text */
  }

  .info-card h3 {
    margin-top: 0;
    margin-bottom: 0.75rem;
    font-size: 1.4rem;
    color: #000000; /* strongest contrast */
  }

  .info-card p {
    margin-bottom: 0.75rem;
    line-height: 1.6;
  }

  .info-card a {
    color: #004080; /* accessible blue */
    text-decoration: underline;
  }

  .info-card a:hover,
  .info-card a:focus {
    color: #002855;
  }

  .info-card a:focus {
    outline: 2px solid #000;
    outline-offset: 2px;
  }

  /* Responsive */
  @media (max-width: 480px) {
    .info-card {
      padding: 1rem;
    }
  }

.table-responsive {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.sales-summary {
    width: 100%;
    border-collapse: collapse;
    min-width: 360px;
    font-size: 1rem;
}

.sales-summary caption {
    text-align: left;
    font-weight: 700;
    padding-bottom: 0.75rem;
}

.sales-summary th,
.sales-summary td {
    padding: 0.75rem;
    border: 1px solid #d9d9d9;
}

.sales-summary th {
    text-align: left;
    font-weight: 600;
}

.sales-summary td {
    text-align: right;
    white-space: nowrap;
}

/* Optional alternating rows */
.sales-summary tbody tr:nth-child(even) {
    background-color: #f7f7f7;
}

/* Mobile */
@media (max-width: 600px) {
    .sales-summary {
        font-size: 0.95rem;
    }

    .sales-summary th,
    .sales-summary td {
        padding: 0.6rem;
    }
}

