@layer page {
  /* Registration button */
  a.rounded.button {
    display: inline-block;
    padding: 10px 20px;
    background: #003366;
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 500;
    font-size: 1em;
    text-decoration: none;
    transition: background 0.2s ease;
  }
  a.rounded.button:hover {
    background: #002244;
    color: white;
  }
  /* Table Styles */
  table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    background: white;
  }
  table th, table td {
    border: 1px solid #ccc;
    padding: 12px;
    text-align: center;
  }
  table th {
    background-color: #003366;
    color: white;
    font-weight: 500;
  }
  table td {
    transition: background-color 0.3s ease;
  }
  table tr:hover td {
    background-color: #f8f9fa;
  }
  @media (max-width: 991px) {
    .table-responsive {
      display: block;
      width: 100%;
      overflow-x: auto;
      -webkit-overflow-scrolling: touch;
      -ms-overflow-style: -ms-autohiding-scrollbar;
      margin: 20px 0;
      background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgb(255, 255, 255) 100%);
    }
    table {
      margin: 0;
    }
    table th, table td {
      min-width: 160px;
      white-space: nowrap;
    }
  }
  .note {
    margin: 30px 0;
    padding: 20px;
    background-color: #f8f9fa;
    border-left: 4px solid #003366;
    border-radius: 4px;
  }
  /* Bank Details */
  .bank-details {
    margin: 30px 0;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid #003366;
  }
  .bank-details h3 {
    margin: 0 0 15px 0;
    color: #003366;
    font-size: 1.1em;
  }
  .bank-table {
    width: 100%;
    max-width: 600px;
    border-collapse: collapse;
    background: transparent;
  }
  .bank-table th,
  .bank-table td {
    padding: 8px 12px;
    text-align: left;
    border: none;
    border-bottom: 1px solid #e9ecef;
    background: transparent;
    color: #333;
  }
  .bank-table th {
    width: 150px;
    font-weight: 500;
    color: #666;
  }
  .bank-table tr:hover td {
    background: transparent;
  }
  .bank-table code {
    background: #e9ecef;
    padding: 2px 6px;
    border-radius: 4px;
    font-family: monospace;
    font-size: 0.95em;
  }
  .bank-note {
    margin: 15px 0 0 0;
    font-size: 0.9em;
    color: #666;
    font-style: italic;
  }
}

/*# sourceMappingURL=registration.css.map */
