/*
Theme Name: SIA Theme
Description: 下野市国際交流協会用のオリジナルテーマ
Author: Top Web Designer
Version: 1.0.0
*/

/* 基本的なスタイルはTailwind CSSで行いますが、
   WordPress特有のクラス（alignfullなど）への対応が必要な場合はここに追記します */


   /* =========================================
   WordPress Pagination
   ========================================= */
/* ページネーションのレイアウト調整 */
.page-numbers {
    display: flex;
    align-items: center;
    justify-content: center;
}

ul.page-numbers {
    display: flex;
    gap: 0.5rem;
    padding-left: 0;
    list-style: none;
}

.page-numbers li {
    margin: 0;
}

/* 現在のページ番号のスタイル */
.page-numbers.current .w-10, /* Tailwindのクラスと併用している場合 */
.page-numbers.current {
    background-color: #0056b3; /* Primary Color */
    color: white;
    border-color: #0056b3;
}