/*
Theme Name: Nota Edu
Theme URI: https://notaedu.com
Author: The Journalism Company
Description: Tema personalizado em WordPress para o Nota Edu
Version: 1.0.9
Requires at least: 6.4
Requires PHP: 8.0
*/

/* Checkbox Styles */
.form-checkbox {
  appearance: none;
  -webkit-appearance: none;
  width: 1rem;
  height: 1rem;
  border: 1px solid #d1d5db;
  border-radius: 0.125rem;
  display: inline-block;
  vertical-align: middle;
  background-origin: border-box;
  user-select: none;
  flex-shrink: 0;
  color: #6d48e5;
}
.form-checkbox:checked {
  background-color: currentColor;
  background-image: url("data:image/svg+xml,%3csvg viewBox='0 0 16 16' fill='white' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M12.207 4.793a1 1 0 010 1.414l-5 5a1 1 0 01-1.414 0l-2-2a1 1 0 011.414-1.414L6.5 9.086l4.293-4.293a1 1 0 011.414 0z'/%3e%3c/svg%3e");
  border-color: transparent;
  background-size: 100% 100%;
  background-position: center;
  background-repeat: no-repeat;
}

/* Pagination Styles */
.nota-pagination-wrapper .nav-links {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}
.nota-pagination-wrapper .page-numbers {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 2.5rem;
  height: 2.5rem;
  padding: 0 0.75rem;
  border-radius: 0.5rem; /* More rounded */
  font-size: 0.875rem;
  font-weight: 600;
  color: #4b5563;
  background-color: #fff;
  border: 1px solid #e5e7eb;
  text-decoration: none;
  transition: all 0.2s;
}
.nota-pagination-wrapper .page-numbers:hover {
  background-color: #fff;
  color: #6d48e5;
  border-color: #6d48e5;
}
.nota-pagination-wrapper .page-numbers.current,
.nota-pagination-wrapper .page-numbers.current:hover {
  background-color: #6d48e5; /* N-Purple */
  color: white;
  font-weight: bold;
  border-color: #6d48e5;
}
.nota-pagination-wrapper .prev,
.nota-pagination-wrapper .next {
  background-color: transparent;
  border: 1px solid #e5e7eb;
}
.nota-pagination-wrapper .prev:hover,
.nota-pagination-wrapper .next:hover {
  background-color: #fff;
  border-color: #6d48e5;
  color: #6d48e5;
}
/* Hide screen reader text helper */
.nota-pagination-wrapper .screen-reader-text {
  display: none;
}
