.searchList {

  width: 220px;

  padding: 3px; 

}

.search1 {

  color: green;

}

.error {border: 1px solid red;}

.errorText {color:#f00;}

#mPointer{

position:relative;

top:-25px;

left:20px;

}



#privacyComp td {

padding:8px;

}



#privacyComp th {

font-weight:bold;

padding:5px

}



/* Modern Pagination Controls */

.pagination {

  display: flex !important;

  flex-direction: row !important;

  justify-content: center;

  align-items: center;

  list-style: none;

  padding: 0;

  margin: 30px 0; /* Original margin, we'll override dir-pagination-controls below */

  gap: 4px;

  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

}



.pagination li {

  /*

   * Removed display: inline-block !important;' because flex items don't typically need this.

   * and it was redundant within a flex container. 

   * for `li` elements that aren't flex items, consider a more specific selector.

   * For the pagination itself, this rule is generally not needed if the parent is flex.

   */

  margin: 0;

  list-style: none; /* Explicitly added this to ensure bullet points are gone */

}



.pagination li a,

.pagination li span {

  display: inline-block;

  padding: 10px 14px;

  text-decoration: none;

  border: 2px solid transparent;

  color: #4a5568;

  background-color: #f7fafc;

  min-width: 40px;

  height: 40px;

  text-align: center;

  border-radius: 8px;

  font-weight: 500;

  /*

   * Additional changes: Adjusted font-size and line-height to ensure the '›' character is visible.

   * Original values for these properties were likely being overridden or implicitly zero.

   */

  font-size: 14px;

  line-height: 1.2;

  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);

  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);

  cursor: pointer;

}



.pagination li a:hover {

  background-color: #edf2f7;

  color: #2d3748;

  transform: translateY(-1px);

  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);

  border-color: #e2e8f0;

}



.pagination li.active a,

.pagination li.active span {

  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);

  border-color: #667eea;

  color: #fff;

  font-weight: 600;

  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);

}



.pagination li.disabled a,

.pagination li.disabled span {

  color: #a0aec0;

  cursor: not-allowed;

  background-color: #f7fafc;

  border-color: transparent;

  opacity: 0.6;

  box-shadow: none;

}



.pagination li.disabled a:hover {

  transform: none;

  background-color: #f7fafc;

  box-shadow: none;

}



/* Special styling for prev/next buttons */

.pagination li:first-child a,

.pagination li:last-child a {

  padding: 10px 16px;

  font-weight: 600;

}



.pagination li:first-child a:hover,

.pagination li:last-child a:hover {

  background-color: #e6fffa;

  color: #319795;

  border-color: #81e6d9;

}



/* Override any vertical layout styles */

dir-pagination-controls * {

  display: inline-block !important;

}



/* Consolidated dir-pagination-controls rules */

dir-pagination-controls {

  display: block;

  text-align: center;

  /* Original margin was 30px 0, now adjusted for centering and left shifts */

  margin: 30px /* Calculated margin-left */ auto; /* Top/Bottom 30px, auto for right */

  padding: 20px 0;

  animation: fadeInUp 0.3s ease-out;

}



/* Pagination wrapper with subtle background */

.pagination-wrapper {

  display: block;

  text-align: center;

  clear: both;

  background: linear-gradient(90deg, transparent 0%, rgba(247, 250, 252, 0.8) 20%, rgba(247, 250, 252, 0.8) 80%, transparent 100%);

  padding: 20px 0;

  border-radius: 12px;

}



/* Responsive design */

@media (max-width: 768px) {

  .pagination li a,

  .pagination li span {

    padding: 8px 10px;

    min-width: 35px;

    height: 35px;

    font-size: 13px;

  }



  .pagination {

    gap: 2px;

    margin: 20px 0;

  }

}



/* Add subtle animation on load */

@keyframes fadeInUp {

  from {

    opacity: 0;

    transform: translateY(10px);

  }

  to {

    opacity: 1;

    transform: translateY(0);

  }

}

