/* Extra forum theme styles */
/* You can extend or override base styles here */

.pagination { margin-top: 16px; display: flex; gap: 8px; }
.pagination .page-numbers { background: rgba(255,255,255,0.9); border: 1px solid rgba(148, 163, 184, 0.35); padding: 6px 12px; border-radius: 999px; text-decoration: none; color: #1b2540; box-shadow: 0 6px 14px rgba(15, 23, 42, 0.08); transition: transform 0.2s ease, box-shadow 0.2s ease; }
.pagination .page-numbers:hover { transform: translateY(-1px); box-shadow: 0 10px 20px rgba(15, 23, 42, 0.12); border-color: rgba(59, 130, 246, 0.35); }
.pagination .current { background: linear-gradient(135deg, #2563eb, #1d4ed8); color: #fff; border-color: transparent; box-shadow: 0 12px 26px rgba(37, 99, 235, 0.25); }

.comment-form input[type="text"],
.comment-form input[type="email"],
.comment-form textarea { width: 100%; padding: 10px 12px; border: 1px solid rgba(148, 163, 184, 0.35); border-radius: 12px; background: rgba(255,255,255,0.9); transition: border-color 0.2s ease, box-shadow 0.2s ease; }
.comment-form input[type="text"]:focus,
.comment-form input[type="email"]:focus,
.comment-form textarea:focus { outline: none; border-color: rgba(59, 130, 246, 0.45); box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.18); }
.comment-form .submit { padding: 10px 20px; border-radius: 999px; }
