body {
    background: #0b1220;
    color: #e9ecef;
}

.forum-desc {
    color: #adb5bd;
    font-size: 0.95rem;
}

.forum-link {
    color: #fff;
    text-decoration: none;
    transition: color 120ms ease;
}

.forum-link:hover {
    color: #ffc107;
    text-decoration: none;
}

.forum-link h5,
.forum-link p,
.forum-link small {
    color: inherit;
}

.text-muted {
    color: #fff !important;
}

/* Ensure muted text is visible on dark background */
.text-muted,
.forum-desc {
    color: #ffffff !important;
}

/* Thread count circle */
.thread-count-circle {
    min-width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #6c757d;
    /* grey */
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-weight: 700;
    font-size: 1.1rem;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
}

@media (max-width: 576px) {
    .thread-count-circle {
        min-width: 44px;
        height: 44px;
        font-size: 1rem;
    }
}

.divider {
    width: 100%;
    height: 3rem;
    background-color: #0000001a;
    border: solid rgba(0, 0, 0, .15);
    border-width: 1px 0;
    box-shadow: inset 0 .5em 1.5em #0000001a, inset 0 .125em .5em #00000026
}

.post-author {
    color: #fff;
    font-weight: 700;
}

.post-meta {
    color: #adb5bd;
    font-size: 0.9rem;
}

.text-muted {
    color: #fff !important;
}

a.forum-action {
    text-decoration: none;
    color: inherit;
    transition: color 120ms ease;
}

a.forum-action:hover {
    color: #ffc107;
}

/* ==================== */
/* Forum Theme Styles   */
/* ==================== */

:root {
  --primary-color: #0d6efd;
  --secondary-color: #6c757d;
  --success-color: #198754;
  --danger-color: #dc3545;
  --warning-color: #ffc107;
  --info-color: #0dcaf0;
}

html,
body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

main {
  flex-grow: 1;
}

.forum-header {
  background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
  border-bottom: 3px solid var(--primary-color);
}

.forum-branding {
  padding: 2rem 0;
}

.forum-branding h1 {
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: #fff;
}

.forum-branding p {
  color: #b0bec5;
  margin: 0;
}

.navbar-custom {
  background-color: #1a252f !important;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.nav-link {
  font-weight: 500;
  transition: color 0.3s;
}

.nav-link:hover {
  color: var(--primary-color) !important;
}

.badge-unread {
  background-color: var(--danger-color);
  padding: 0.25rem 0.6rem;
  margin-left: 0.5rem;
}

.user-menu-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: var(--primary-color);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-right: 0.5rem;
}

.dropdown-menu {
  border: none;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  border-radius: 0.5rem;
}

.dropdown-item {
  padding: 0.75rem 1.5rem;
  transition: all 0.2s ease;
}

.dropdown-item:hover {
  background-color: var(--primary-color);
  color: white !important;
}

.dropdown-item i {
  margin-right: 0.5rem;
  width: 16px;
}

/* Forum Index Cards */
.forum-card {
  background-color: #1a252f;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
  overflow: hidden;
}

.forum-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 16px rgba(13, 110, 253, 0.2) !important;
  border-color: rgba(13, 110, 253, 0.3);
}

.forum-card .card-header {
  background: linear-gradient(135deg, var(--primary-color) 0%, #0b5ed7 100%) !important;
  border: none;
}

.forum-card .card-header h5 {
  font-weight: 600;
  font-size: 1.1rem;
}

.forum-card .card-body {
  background-color: #1a252f;
  color: #e9ecef;
}

.forum-card .card-text {
  font-size: 0.95rem;
  line-height: 1.5;
}

.forum-card .border-top {
  border-color: rgba(255, 255, 255, 0.1) !important;
}

.forum-card .row div {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.forum-card .card-footer {
  background-color: rgba(255, 255, 255, 0.02) !important;
  border-color: rgba(255, 255, 255, 0.1) !important;
}

.transition-hover {
  cursor: pointer;
}

/* Breadcrumb Styling */
.breadcrumb-nav {
  background: linear-gradient(90deg, rgba(13, 110, 253, 0.05) 0%, rgba(13, 110, 253, 0.02) 100%);
  border: 1px solid rgba(13, 110, 253, 0.2);
  border-radius: 0.5rem;
  padding: 1rem;
  /*margin-top: 2rem;*/
  margin-bottom: 1.5rem;
  backdrop-filter: blur(10px);
}

.breadcrumb-nav .breadcrumb {
  margin-bottom: 0;
}

.breadcrumb-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.95rem;
}

.breadcrumb-item a {
  color: var(--primary-color);
  text-decoration: none;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.25rem 0.5rem;
  border-radius: 0.25rem;
}

.breadcrumb-item a:hover {
  color: var(--info-color);
  background-color: rgba(13, 110, 253, 0.1);
  padding-left: 0.75rem;
}

.breadcrumb-item + .breadcrumb-item::before {
  color: rgba(255, 255, 255, 0.4);
  margin: 0 0.25rem;
}

.breadcrumb-item i {
  opacity: 0.7;
  font-size: 0.75rem;
}

/* Thread List Styling */
.thread-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.thread-item {
  padding: 1.25rem;
  background-color: #1a252f;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0.375rem;
  transition: all 0.2s ease;
}

.thread-item:hover {
  background-color: #1f2d38;
  border-color: var(--primary-color);
  box-shadow: 0 2px 8px rgba(13, 110, 253, 0.1);
}

.thread-title {
  display: flex;
  align-items: center;
  margin-bottom: 0.75rem;
}

.thread-title a {
  color: #e9ecef;
  text-decoration: none;
  font-size: 1.05rem;
  font-weight: 500;
  flex: 1;
  transition: color 0.2s ease;
}

.thread-title a:hover {
  color: var(--primary-color);
}

.thread-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: #adb5bd;
}

.thread-author {
  color: var(--info-color);
  font-weight: 500;
}

.thread-replies {
  background-color: rgba(13, 110, 253, 0.1);
  padding: 0.25rem 0.75rem;
  border-radius: 0.25rem;
  color: var(--primary-color);
  font-weight: 500;
}

.thread-sep {
  opacity: 0.5;
}

/* Post List Styling */
.post-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.post-item {
  padding: 1.5rem;
  background-color: #1a252f;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0.375rem;
  transition: all 0.2s ease;
}

.post-item:hover {
  background-color: #1f2d38;
  border-color: rgba(255, 255, 255, 0.15);
}

.post-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.post-author-info {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.post-author-info strong {
  color: #e9ecef;
}

.post-author-info .text-muted {
  font-size: 0.85rem;
  color: #adb5bd !important;
}

.post-header-right {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.post-header-right .text-muted {
  color: #adb5bd !important;
  font-size: 0.9rem;
  white-space: nowrap;
}

.post-header-right .post-actions {
  display: flex;
  gap: 0.25rem;
  margin: 0;
  padding: 0;
  border: none;
}

.post-subject {
  font-size: 1rem;
  font-weight: 600;
  color: #e9ecef;
  margin-bottom: 0.75rem;
}

.post-content {
  margin-bottom: 1rem;
  line-height: 1.6;
  color: #d1d5db;
}

.post-body {
  margin: 1rem 0;
}

.post-action-icon {
  color: #adb5bd;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 6px;
  background: none; /* rgba(255, 255, 255, 1); */
  transition: all 0.2s ease;
}

.post-action-icon:hover {
  color: var(--primary-color);
  background: rgba(13, 110, 253, 0.1);
}

.post-action-icon.text-danger:hover {
  color: var(--danger-color);
  background: rgba(220, 53, 69, 0.1);
}

.post-action-icon i {
  font-size: 0.85rem;
}

/* Reply Box Styling */
.reply-box-container {
  margin-top: 2rem;
  padding: 1.5rem;
  background-color: #1a252f;
  border: 1px solid rgba(13, 110, 253, 0.3);
  border-radius: 0.5rem;
  box-shadow: 0 4px 12px rgba(13, 110, 253, 0.1);
}

.reply-box-container h3 {
  font-size: 1.25rem;
  color: #e9ecef;
  margin-bottom: 1.5rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid rgba(13, 110, 253, 0.2);
}

.reply-form-group {
  margin-bottom: 1.25rem;
}

.reply-form-group label {
  display: block;
  font-weight: 500;
  color: #e9ecef;
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
}

.reply-form-group .form-control,
.reply-form-group .form-control:focus {
  background-color: #0f1724;
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #e9ecef;
  font-size: 0.95rem;
}

.reply-form-group .form-control:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 0.2rem rgba(13, 110, 253, 0.25);
}

.reply-form-group textarea.form-control {
  min-height: 150px;
  resize: vertical;
  font-family: 'Courier New', monospace;
}

.reply-form-group .form-control::placeholder {
  color: #6c757d;
}

/* SCEditor styling override */
.sceditor-container {
  background-color: #0f1724 !important;
  border: 1px solid rgba(255, 255, 255, 0.15) !important;
  border-radius: 0.375rem !important;
}

.sceditor-container.focused {
  border-color: var(--primary-color) !important;
  box-shadow: 0 0 0 0.2rem rgba(13, 110, 253, 0.25) !important;
}

.sceditor-toolbar {
  background-color: #1a252f !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15) !important;
}

.sceditor-button,
.sceditor-button:hover {
  background-color: transparent !important;
  color: #e9ecef !important;
  border: 1px solid transparent !important;
}

.sceditor-button:hover {
  background-color: rgba(13, 110, 253, 0.2) !important;
  border-color: rgba(13, 110, 253, 0.3) !important;
}

.sceditor-button.disabled,
.sceditor-button.disabled:hover {
  opacity: 0.5 !important;
  color: #6c757d !important;
}

.sceditor-textarea {
  background-color: #0f1724 !important;
  color: #e9ecef !important;
  caret-color: var(--primary-color) !important;
}

.reply-box-actions {
  display: flex;
  gap: 0.75rem;
  margin-top: 1rem;
}

.reply-box-actions .btn {
  padding: 0.5rem 1.5rem;
  font-weight: 500;
  border-radius: 0.375rem;
  transition: all 0.2s ease;
}

.reply-box-actions .btn-primary {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}

.reply-box-actions .btn-primary:hover {
  background-color: #0b5ed7;
  border-color: #0b5ed7;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(13, 110, 253, 0.3);
}

.reply-box-actions .btn-secondary {
  background-color: transparent;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #e9ecef;
}

.reply-box-actions .btn-secondary:hover {
  background-color: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.3);
}

/* Inline Post Edit Form */
.post-edit-form {
  padding: 1.5rem;
  background-color: rgba(13, 110, 253, 0.08);
  border: 1px solid rgba(13, 110, 253, 0.2);
  border-radius: 0.375rem;
  margin-top: 1rem;
}

.edit-form-group label {
  color: #e9ecef;
  font-weight: 500;
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
}

.edit-form-group .form-control {
  background-color: #0f1724;
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #e9ecef;
  padding: 0.75rem;
  border-radius: 0.375rem;
}

.edit-form-group .form-control:focus {
  background-color: #0f1724;
  border-color: var(--primary-color);
  color: #e9ecef;
  box-shadow: 0 0 0 0.2rem rgba(13, 110, 253, 0.25);
}

.edit-form-group .form-control::placeholder {
  color: #6c757d;
}

.edit-form-actions {
  display: flex;
  gap: 0.5rem;
  margin-top: 1rem;
}

.edit-form-actions .btn {
  padding: 0.425rem 0.875rem;
  font-size: 0.875rem;
  border-radius: 0.375rem;
  transition: all 0.2s ease;
}

.edit-form-actions .btn-primary {
  background-color: var(--success-color);
  border-color: var(--success-color);
  color: white;
}

.edit-form-actions .btn-primary:hover {
  background-color: #157347;
  border-color: #157347;
  box-shadow: 0 2px 6px rgba(25, 135, 84, 0.3);
}

.edit-form-actions .btn-secondary {
  background-color: transparent;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #e9ecef;
}

.edit-form-actions .btn-secondary:hover {
  background-color: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.3);
}

.post-saving {
  opacity: 0.6;
  pointer-events: none;
}

.edit-post-btn,
.delete-post-btn {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

/* Topic Preview Popup */
.topic-preview-popup {
  display: none;
  flex-direction: column;
  position: fixed;
  background-color: #1a252f;
  border: 1px solid rgba(13, 110, 253, 0.3);
  border-radius: 0.5rem;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
  z-index: 1000;
  width: 420px;
  height: 250px;
  animation: slideInRight 0.2s ease;
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(-10px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.preview-header {
  padding: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
}

.preview-header h4 {
  color: #e9ecef;
  font-size: 0.95rem;
  font-weight: 600;
  margin: 0;
  line-height: 1.4;
  flex: 1;
}

.preview-close {
  background: none;
  border: none;
  color: #adb5bd;
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.2s ease;
}

.preview-close:hover {
  color: #e9ecef;
}

.preview-content {
  padding: 1rem;
  flex: 1;
  overflow-y: auto;
  background-color: #0f1724;
}

.preview-post {
  color: #d1d5db;
}

.preview-author {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
  font-size: 0.85rem;
}

.preview-author i {
  color: var(--primary-color);
}

.preview-author strong {
  color: #e9ecef;
}

.preview-author .text-muted {
  color: #6c757d !important;
  font-size: 0.8rem;
}

.preview-body {
  font-size: 0.85rem;
  line-height: 1.5;
  color: #d1d5db;
}

.preview-toggle {
  display: flex;
  gap: 0.5rem;
  padding: 0.75rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  background-color: rgba(13, 110, 253, 0.05);
}

.toggle-btn {
  flex: 1;
  padding: 0.5rem;
  background-color: transparent;
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #adb5bd;
  border-radius: 0.375rem;
  cursor: pointer;
  font-size: 0.8rem;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.375rem;
}

.toggle-btn:hover {
  border-color: rgba(13, 110, 253, 0.3);
  color: #e9ecef;
}

.toggle-btn.active {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  color: white;
}

/* Admin Panel Styles */
.admin-container {
  max-width: 1200px;
  margin: 2rem auto;
  padding: 0 1rem;
}

.admin-header {
  padding: 1.5rem 0;
  border-bottom: 2px solid rgba(13, 110, 253, 0.3);
  margin-bottom: 2rem;
}

.admin-header h2 {
  color: #e9ecef;
  font-weight: 700;
}

.card-admin {
  background-color: #1a252f;
  border: 1px solid rgba(13, 110, 253, 0.2);
  margin-bottom: 2rem;
}

.card-admin .card-header {
  background-color: rgba(13, 110, 253, 0.1);
  border-bottom: 1px solid rgba(13, 110, 253, 0.2);
  padding: 1.25rem 1.5rem;
}

.card-admin .card-header h4 {
  color: #e9ecef;
  margin: 0;
  font-weight: 600;
  font-size: 1.1rem;
}

.card-admin .card-body {
  padding: 1.5rem;
}

.admin-settings {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.admin-setting-row {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.admin-label {
  color: #e9ecef;
  font-weight: 600;
  font-size: 0.95rem;
}

.admin-input,
.form-select {
  background-color: #0f1724 !important;
  border: 1px solid rgba(255, 255, 255, 0.15) !important;
  color: #e9ecef !important;
  padding: 0.5rem 0.75rem;
  border-radius: 0.375rem;
}

.admin-input:focus,
.form-select:focus {
  background-color: #0f1724 !important;
  border-color: var(--primary-color) !important;
  box-shadow: 0 0 0 0.2rem rgba(13, 110, 253, 0.25);
  color: #e9ecef !important;
}

.form-select option {
  background-color: #1a252f;
  color: #e9ecef;
}

.table-dark {
  background-color: #0f1724;
}

.table-dark > :not(caption) > * > * {
  background-color: #0f1724;
  border-bottom-color: rgba(255, 255, 255, 0.1);
}

.table-dark tbody tr:hover {
  background-color: rgba(13, 110, 253, 0.1);
}

.table-dark th {
  background-color: rgba(13, 110, 253, 0.15);
  color: #e9ecef;
  border-bottom: 2px solid rgba(13, 110, 253, 0.3);
}

.table-dark td {
  color: #d1d5db;
}

.col-actions {
  text-align: right;
  white-space: nowrap;
}

.table-sm td {
  padding: 0.35rem 0.5rem;
}

.table-active {
  background-color: rgba(13, 110, 253, 0.05) !important;
}

.nav-tabs {
  border-bottom: 2px solid rgba(255, 255, 255, 0.1);
}

.nav-tabs .nav-link {
  color: #adb5bd;
  border: none;
  border-bottom: 3px solid transparent;
  font-weight: 500;
}

.nav-tabs .nav-link:hover {
  color: #e9ecef;
  border-bottom-color: rgba(13, 110, 253, 0.5);
}

.nav-tabs .nav-link.active {
  color: #e9ecef;
  border-bottom-color: var(--primary-color);
  background-color: transparent;
}

.admin-actions {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-primary {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}

.btn-primary:hover {
  background-color: #0d5dd7;
  border-color: #0d5dd7;
}

.btn-success {
  background-color: #28a745;
  border-color: #28a745;
}

.btn-success:hover {
  background-color: #218838;
  border-color: #218838;
}

.btn-warning {
  background-color: #ffc107;
  border-color: #ffc107;
  color: #000;
}

.btn-warning:hover {
  background-color: #e0a800;
  border-color: #d39e00;
  color: #000;
}

.btn-danger {
  background-color: #dc3545;
  border-color: #dc3545;
}

.btn-danger:hover {
  background-color: #c82333;
  border-color: #bd2130;
}

.font-monospace {
  font-family: 'Courier New', monospace;
}

/* Modal Styles */
.modal-content {
  background-color: #1a252f;
  border: 1px solid rgba(13, 110, 253, 0.2);
}

.modal-header {
  background-color: rgba(13, 110, 253, 0.1);
  border-bottom: 1px solid rgba(13, 110, 253, 0.2);
}

.modal-title {
  color: #e9ecef;
  font-weight: 600;
}

.modal-body {
  color: #e9ecef;
}

.modal-footer {
  border-top: 1px solid rgba(13, 110, 253, 0.2);
  background-color: rgba(13, 110, 253, 0.05);
}

.form-label {
  color: #e9ecef;
  font-weight: 500;
}

.form-control {
  background-color: #0f1724 !important;
  border: 1px solid rgba(255, 255, 255, 0.15) !important;
  color: #e9ecef !important;
}

.form-control:focus {
  background-color: #0f1724 !important;
  border-color: var(--primary-color) !important;
  box-shadow: 0 0 0 0.2rem rgba(13, 110, 253, 0.25);
  color: #e9ecef !important;
}

.form-control::placeholder {
  color: #6c757d;
}

.text-danger {
  color: #dc3545;
}

.btn-close-white {
  filter: invert(1) grayscale(100%) brightness(200%);
}

/* Sticky Topics Styling */
.sticky-thread {
  background-color: rgba(255, 193, 7, 0.08);
  border-left: 4px solid #ffc107;
}

.sticky-thread:hover {
  background-color: rgba(255, 193, 7, 0.15);
}

.sticky-icon {
  color: #ffc107;
  font-size: 0.85rem;
}

.sticky-post-btn {
  color: #adb5bd;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border: none;
}

.sticky-post-btn:hover {
  color: #ffc107;
  background: rgba(255, 193, 7, 0.1);
}

.sticky-post-btn.sticky-active {
  color: #ffc107;
  /*background: rgba(255, 193, 7, 0.1);*/
  text-shadow: 0 0 8px rgba(255, 193, 7, 0.5);
}

/* Pagination Styling */
.pagination-container {
  display: flex;
  flex-direction: column;
  align-items: right;
   gap: 1rem;
  margin: 2rem 0;/*
  padding: 1.5rem;
  background-color: rgba(13, 110, 253, 0.05);
  border: 1px solid rgba(13, 110, 253, 0.2);
  border-radius: 0.5rem; */
}

.pagination-info {
  font-size: 0.9rem;
  color: #adb5bd;
  font-weight: 500;
}

.pagination-dark {
  display: flex;
  list-style: none;
  padding: 0;
  gap: 0.5rem;
  margin: 0;
  justify-content: right;
  flex-wrap: wrap;
}

.pagination-dark .page-item {
  margin: 0;
}

.pagination-dark .page-link {
  background-color: rgba(13, 110, 253, 0.1);
  border: 1px solid rgba(13, 110, 253, 0.3);
  color: #adb5bd;
  padding: 0.5rem 0.75rem;
  border-radius: 0.375rem;
  text-decoration: none;
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 36px;
}

.pagination-dark .page-link:hover {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  color: white;
}

.pagination-dark .page-item.active .page-link {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  color: white;
  box-shadow: 0 0 12px rgba(13, 110, 253, 0.4);
}

.pagination-dark .page-item.disabled .page-link {
  background-color: rgba(255, 255, 255, 0.05);
  border-color: rgba(13, 110, 253, 0.15);
  color: #6c757d;
  cursor: not-allowed;
}

.pagination-dark .page-link i {
  font-size: 0.8rem;
}