@layer page {
  /* 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: #52517a;
    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 #52517a;
    border-radius: 4px;
  }
}

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