/*
Theme Name: JLPT
Theme URI: https://jlptkanjicourse.com/
Author: Shreyas Borse
Author URI: https://shreyasborse.com/
Description: JLPT minimal theme (Tailwind-based) matching custom HTML homepage design.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: jlpt
Tags: education, minimal, responsive, blog
*/

/* Keep this file minimal because Tailwind handles most styling. */

/* WordPress Pagination – Tailwind style, Bootstrap safe */

.navigation.pagination {
  display: flex;
  justify-content: center;
  margin-top: 2rem;
}

.navigation.pagination .nav-links {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
}

.navigation.pagination .page-numbers {
  min-width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 0.75rem;
  border: 1px solid #d1d5db;
  border-radius: 0.375rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: #374151;
  background-color: #ffffff;
  text-decoration: none;
  transition: all 0.15s ease-in-out;
}

.navigation.pagination .page-numbers:hover {
  background-color: #f3f4f6;
}

.navigation.pagination .page-numbers.current {
  background-color: #2563eb;
  border-color: #2563eb;
  color: #ffffff;
  cursor: default;
}

.navigation.pagination .page-numbers.dots {
  border: none;
  background: transparent;
  cursor: default;
}

.navigation.pagination .page-numbers.prev,
.navigation.pagination .page-numbers.next {
  font-weight: 600;
}