.logo-text {
  font-weight: bold;
  font-style: italic;
  color: #315274;
  margin-left: 10px;
  font-size: 1.7rem;
}

.img-card-200 {
  width: fit-content;
  max-height: 200px;
}

.img-card-400 {
  max-width: 100%;
  max-height: 400px;
  object-fit: contain;
}

.link-title {
  font-size: 1.1rem;  /* Or adjust to 0.95rem or 0.875rem */
  font-weight: 600; /* Optional: keeps it bold without being huge */
  margin-bottom: 0.25rem;
  color: #2C3E50;
}

.link-title:hover {
  color: #4A6D8C;
}

/* Active page link */
.pagination .page-item.active .page-link {
  background-color: #2C3E50;
  border-color: #2C3E50;
  color: #ffffff;
}

/* Regular page links */
.pagination .page-link {
  color: #2C3E50;
  border-color: #dee2e6;
}

/* Hover effects */
.pagination .page-link:hover {
  background-color: #f0f4f8;
  color: #2C3E50;
}

/* Disabled (ellipses, arrows when inactive) */
.pagination .page-item.disabled .page-link {
  color: #adb5bd;
  background-color: transparent;
  border-color: transparent;
}



/* Lists block styles (keep these) */
.movie-lists-block {
  background-color: #f8fafc;
  border: 1px solid #edf1f5;
  border-radius: 6px;
  padding: .6rem .75rem;
}

.movie-lists-title {
  font-weight: 600;
  font-size: .9rem;
  color: #495057;
  padding-bottom: .25rem;
  margin-bottom: .45rem;
  border-bottom: 1px solid #e6eaef;
}

.movie-lists-ul {
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: .9rem;
}

.movie-lists-ul li { margin: .1rem 0; }

.movie-lists-ul a {
  color: #0a4a9b;
  text-decoration: none;
}

.movie-lists-ul a:hover {
  color: #495057;
  text-decoration: none;
}

.movie-meta-aside > * { width: 100%; }

.popularity-line {
  font-weight: 600;       /* Bold */
  font-size: 1rem;        /* Slightly bigger */
  color: #495057;         /* Dark gray like before */
  text-align: right;      /* Push text to the right */
  width: 100%;            /* Make sure it spans the full column */
  margin-bottom: 0.25rem; /* same as .mb-1 in Bootstrap */
}

.movie-summary {
  line-height: 1.4; /* tighter line spacing */
}

.movie-lists-ul .disabled-link {
  color: #6c757d;
  text-decoration: none;
  cursor: default;
}
.movie-lists-ul .disabled-link:hover {
  text-decoration: none;
  color: #6c757d;
}