@theme {
  --color-primary: #3b82f6;
  --color-secondary: #64748b;
  --color-accent: #f59e0b;
}
/* app.css */
.tw-checkbox {
  @apply block relative h-[1.2rem] w-[1.2rem] p-[1px] appearance-none rounded-[0.25rem]
         border-[0.125rem] border-solid border-neutral-300 outline-none
         before:pointer-events-none before:absolute before:h-[0.875rem] before:w-[0.875rem]
         before:scale-0 before:rounded-full before:bg-transparent before:opacity-0
         before:shadow-[0px_0px_0px_13px_transparent] before:content-['']
         checked:border-primary checked:bg-primary checked:before:opacity-[0.16]
         checked:after:absolute checked:after:-mt-px checked:after:ml-[0.25rem]
         checked:after:block checked:after:h-[0.8125rem] checked:after:w-[0.375rem]
         checked:after:rotate-45 checked:after:border-[0.125rem] checked:after:border-l-0
         checked:after:border-t-0 checked:after:border-solid checked:after:border-white
         checked:after:bg-transparent hover:cursor-pointer hover:before:opacity-[0.04]
         hover:before:shadow-[0px_0px_0px_13px_rgba(0,0,0,0.6)] focus:shadow-none
         focus:transition-[border-color_0.2s] focus:before:scale-100 focus:before:opacity-[0.12]
         focus:before:shadow-[0px_0px_0px_13px_rgba(0,0,0,0.6)]
         focus:before:transition-[box-shadow_0.2s,transform_0.2s]
         focus:after:absolute focus:after:z-[1] focus:after:block focus:after:h-[0.875rem]
         focus:after:w-[0.875rem] focus:after:rounded-[0.125rem] focus:after:content-['']
         checked:focus:before:scale-100 checked:focus:before:shadow-[0px_0px_0px_13px_#ff2538]
         checked:focus:before:transition-[box-shadow_0.2s,transform_0.2s]
         checked:focus:after:-mt-px checked:focus:after:ml-[0.25rem] checked:focus:after:h-[0.8125rem]
         checked:focus:after:w-[0.375rem] checked:focus:after:rotate-45 checked:focus:after:rounded-none
         checked:focus:after:border-[0.125rem] checked:focus:after:border-l-0 checked:focus:after:border-t-0
         dark:border-neutral-600 dark:checked:border-primary dark:checked:bg-primary
         dark:focus:before:shadow-[0px_0px_0px_13px_RGBA(255,255,255,0.4)]
         dark:checked:focus:before:shadow-[0px_0px_0px_13px_#ff2538];
}

body {
  font-family: 'Helvetica' !important;
}

/* Custom Auth Checkbox Styles */
.auth-checkbox {
  position: relative;
  display: inline-flex;
  align-items: center;
  cursor: pointer;
  user-select: none;
}

.auth-checkbox input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}

.auth-checkbox .checkbox-bg {
  position: relative;
  width: 20px;
  height: 20px;
  background-color: #000;
  border: 1px solid #374151;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

.auth-checkbox:hover .checkbox-bg {
  border-color: #db2424;
}

.auth-checkbox input[type="checkbox"]:checked + .checkbox-bg {
  background-color: #db2424;
  border-color: #db2424;
}

.auth-checkbox input[type="checkbox"]:checked + .checkbox-bg svg {
  display: block !important;
}

.auth-checkbox .checkbox-text {
  margin-left: 12px;
  color: #9ca3af;
  transition: color 0.2s ease;
}

.auth-checkbox:hover .checkbox-text {
  color: #ffffff;
}

@layer components {
  #main-container {
    width: 100%;
    height: 100%;
    background-color: #000;
  }

  @media (min-width: 1024px) {
    #main-container {
      min-width: 70vw;
      max-width: 70vw;
    }
  }

  @media (min-width: 640px) {
    .sm\:p-2 {
      padding: 0.5rem;
    }
  }

  @media (min-width: 768px) {
    .sm\:rounded-lg {
      border-radius: 0.5rem;
    }
  }
}

@layer components {
  .hidden-pfhvr .child-menu-d {
    display: none;
  }

  .hidden-pfhvr:hover .child-menu-d {
    display: block;
  }
}


/* The Modal (background) */
.searchModalBox {
  display: none;
  /* Hidden by default */
  position: fixed;
  /* Stay in place */
  z-index: 9999999999999;
  /* Sit on top */
  padding-top: 100px;
  /* Location of the box */
  left: 0;
  top: 0;
  width: 100%;
  /* Full width */
  height: 100%;
  /* Full height */
  overflow: auto;
  /* Enable scroll if needed */
  background-color: rgb(0, 0, 0);
  /* Fallback color */
  background-color: rgba(0, 0, 0, 0.4);
  /* Black w/ opacity */
}

/* Modal Content */
.search-modal-content {
  margin: auto;
  padding: 20px;
  max-width: 512px;
}

/* The Close Button */
.search-close {
  color: #aaaaaa;
  font-size: 28px;
  font-weight: bold;
  position: relative;
  margin-right: 12px
}

.search-close:hover,
.search-close:focus {
  color: #000;
  text-decoration: none;
  cursor: pointer;
}

.movie-type-genres h2 {
  font-size: 30px;
  color: #fff;
  font-weight: 500;
  margin-bottom: 25px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.movie-type-genres h2 a {
  font-size: 16px;
  font-weight: normal;
  color: rgba(255, 255, 255, 0.8);
  background: url(../img/arrow-right.svg) no-repeat right;
  padding-right: 27px;
}

.movie-type-genres ul {
  display: flex;
  gap: 16px;
}

.movie-type-genres ul li {}

.movie-type-genres ul li a {
  display: flex;
  position: relative;
  overflow: hidden;
  z-index: 1;
  flex-direction: row-reverse;
  align-items: flex-start;
  width: 100%;
}

.movie-type-genres ul li a .number {
  font-size: 112px;
  color: #fff;
  font-weight: 900;
  position: relative;
  z-index: -1;
  opacity: 0.2;
  display: flex;
  height: 85px;
  align-items: center;
  width: 43px;
}

.movie-type-genres ul li a .cover {
  display: none;
}

.movie-type-genres ul li a .detail {
  display: none;
}

.movie-type-genres ul li a>img {
  width: 100%;
  opacity: 1;
  background: rgba(255, 255, 255, 0.2);
  aspect-ratio: 0.6666666667;
  filter: saturate(1);
  border-radius: 5px;
}

.movie-type-genres ul li a .status {
  position: absolute;
  bottom: 0;
  left: 10px;
  right: 10px;
  background: rgba(255, 255, 255, 0.5);
  height: 5px;
  display: flex;
}

.movie-type-genres ul li a .status span {
  background: var(--primary-color);
}

.movie-type-genres ul li a:hover img {
  opacity: 1;
  filter: saturate(1);
}

.movie-type-genres ul li a:hover .hover {
  opacity: 0;
  visibility: hidden;
}

.movie-type-genres ul.trends li a {}

.movie-type-genres ul.trends li a img {
  opacity: 1;
}

.movie-type-genres.view-list ul {
  margin: 0;
  justify-content: space-between;
}

.movie-type-genres.view-list ul li {
  width: 49%;
}

.movie-type-genres.view-list ul li a {
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  display: flex;
  align-items: center;
}

.movie-type-genres.view-list ul li a:hover {
  border-color: rgba(255, 255, 255, 0.15);
}

.movie-type-genres.view-list ul li a img {
  height: 190px;
  width: auto;
  margin-right: 25px;
}

.movie-type-genres.view-list ul li a .detail {
  display: flex;
  flex-direction: column;
  padding-right: 20px;
}

.movie-type-genres.view-list ul li a .detail .title {
  font-size: 20px;
  font-weight: 500;
  color: #fff;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.movie-type-genres.view-list ul li a .detail .m-detail {
  padding-top: 10px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
}

.movie-type-genres.view-list ul li a .detail .m-detail span:first-child {
  padding-right: 15px;
  margin-right: 15px;
  position: relative;
}

.movie-type-genres.view-list ul li a .detail .m-detail span:first-child::before {
  content: '';
  width: 4px;
  height: 4px;
  background: rgba(255, 255, 255, 0.7);
  position: absolute;
  top: 8px;
  right: -5px;
  border-radius: 50%;
}

.movie-type-genres.view-list ul li a .detail .summary {
  padding-top: 20px;
  margin-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 14px;
  line-height: 1.4;
  color: #fff;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  color: rgba(255, 255, 255, 0.76);
}

::-webkit-scrollbar {
  width: 5px;
}

::-webkit-scrollbar-thumb {
  background-color: #ff3130;
  width: 4px;
}

::-webkit-scrollbar-track {
  background: transparent;
}

.comments-bar-comment-head-bg {
  background: #131316;
  border: none
}

@media screen and (max-width: 768px) {
  .comments-bar-comment-head-bg {
    padding: 10px 20px !important;
  }
}


.summary {
  line-height: 1.5;
  font-size: 16px;
  color: #fff;
  width: calc(100% - 315px);
  flex-direction: column
}

.summary .comment-like-avg {
  align-items: center;
  margin-bottom: 20px;
  display: flex;
}

.summary .comment-like-avg .vote {
  width: 50px;
  height: 50px;
  font-size: 20px;
  font-weight: bold
}

.summary .comment-like-avg .vote-text .vote-users {
  font-size: 14px;
  padding-bottom: 10px
}

.summary .comment-like-avg .vote-text .bar {
  width: 150px
}

.summary-paragraph {
  font-weight: 400;
  line-height: 1.5;
  font-size: 16px;
  color: #fff;
  display: block
}

.popup-content {
  display: flex;
  padding: 0 40px 40px;
  justify-content: space-between;
  background: var(--secondary-color);
}

.popup-content>ul {
  margin-left: 50px;
  min-width: 260px;
  max-width: 260px;
  flex-direction: column;
  font-weight: 400
}

.popup-content>ul li {
  margin-bottom: 20px;
  flex-direction: column
}

.popup-content>ul li .key {
  font-size: 15px;
  color: rgba(255, 255, 255, .7);
  padding-bottom: 10px
}

.popup-content>ul li .value {
  font-size: 16px;
  color: #fff
}

.popup-content>ul li.rm-info .value {
  align-items: center
}

.popup-content>ul li .value a {
  color: #fff;
  text-decoration: underline;
  margin-right: 10px;
  display: inline-block;
  margin-bottom: 5px
}


.movie-actors {
  padding-top: 30px;
  margin-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, .07);
  flex-direction: column
}

.movie-actors h4 {
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 15px
}

.movie-actors>ul {
  flex-wrap: wrap;
  margin-bottom: 15px;
  justify-content: space-between
}


.movie-actors>ul>li>a {
  align-items: center
}

.movie-actors>ul>li>a>img {
  height: 60px;
  width: 60px;
  object-fit: cover;
  border-radius: 50%;
  margin-right: 20px;
  min-width: 60px
}

.movie-actors>ul>li>a .actor-item {
  width: calc(100% - 80px);
  flex-direction: column
}

.movie-actors>ul>li>a .actor-item .name {
  display: block;
  text-overflow: ellipsis;
  overflow: hidden;
  width: 100%;
  white-space: nowrap;
  font-size: 15px;
  font-weight: 500;
  color: #fff
}

.movie-actors>ul>li>a .actor-item .role {
  display: block;
  text-overflow: ellipsis;
  overflow: hidden;
  width: 100%;
  white-space: nowrap;
  font-size: 14px;
  color: rgba(255, 255, 255, .5)
}

.movie-actors>ul.hide-more-actors li:nth-child(n+7) {
  display: none
}

.movie-actors .show-all-actors {
  text-align: center;
  padding-top: 15px;
  margin-top: 15px;
  border-top: 1px solid rgba(255, 255, 255, .07)
}

.movie-actors .show-all-actors>a {
  display: block;
  width: 100%;
  font-size: 15px;
  font-weight: 500;
  color: #fff
}



.comment-like-avg .vote {
  display: flex;
  background: var(--color);
  color: #fff;
  font-weight: bold;
  border-radius: 3px;
  margin-right: 15px;
  width: 40px;
  height: 40px;
  font-size: 15px;
  align-items: center;
  justify-content: center
}

.comment-like-avg .vote-text {
  width: calc(100% - 55px);
  flex-direction: column
}

.comment-like-avg .vote-text .vote-users {
  padding-bottom: 7px;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.1
}

.comment-like-avg .vote-text .bar {
  width: 100%;
  align-items: center;
  background: rgba(255, 255, 255, .15)
}

.comment-like-avg .bar span {
  height: 3px;
  background: var(--color)
}

.summary .comment-like-avg .vote-text .bar {
  width: 150px;
  height: 2px
}

.comment-like-avg .vote-text .bar {
  width: 100%;
  align-items: center;
  displat: flex;
  background: rgba(255, 255, 255, .15);
}

.comment-like-avg .bar span {
  display: flex;
  height: 3px;
  background: var(--color);
}

@media screen and (max-width: 768px) {
  .popup-content {
    display: block
  }

  .summary {
    width: 100%;
  }

  .popup-content>ul {
    margin-left: 0;
    margin-top: 40px;
  }

  #footerFixedDiv {
    bottom: 49px !important;
    padding-bottom: 0 !important;
  }
}


.radio-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.radio-toolbar input[type="checkbox"] {
  display: none;
}

.radio-toolbar label {
  padding-top: .40rem;
  padding-bottom: .40rem;
  background: rgb(25 26 31);
  border-color: #292b34;
  font-size: 0.8rem;
}


.asRange,
.asRange-scale {
  position: relative;
  width: 100%;
  height: 8px;
  background-color: #cfcdc7;
  border-radius: 8px
}

.asRange .asRange-pointer,
.asRange-scale .asRange-pointer {
  position: absolute;
  left: 30%;
  z-index: 2;
  width: 8px;
  height: 8px;
  margin-left: -4px;
  background-color: #fff;
  border-radius: 9px
}

.asRange .asRange-pointer:before,
.asRange-scale .asRange-pointer:before {
  position: absolute;
  top: -4px;
  right: -4px;
  bottom: -4px;
  left: -4px;
  content: "";
  background: #ff2538;
  border-radius: inherit
}

.asRange .asRange-pointer:after,
.asRange-scale .asRange-pointer:after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  content: "";
  background: #fff;
  border-radius: inherit
}

.asRange .asRange-pointer.start,
.asRange-scale .asRange-pointer.start {
  left: 0;
  margin-left: 4px
}

.asRange .asRange-pointer.stop,
.asRange-scale .asRange-pointer.stop {
  left: 100%;
  margin-left: -12px
}

.asRange .asRange-pointer .asRange-tip,
.asRange-scale .asRange-pointer .asRange-tip {
  position: absolute;
  bottom: -33px;
  left: 0;
  width: 36px;
  height: 20px;
  margin-left: -15px;
  font-family: Bpreplay;
  font-size: 12px;
  line-height: 20px;
  color: #fff;
  text-align: center;
  background-color: #5d5c58;
  border: 1px solid #5d5c58;
  border-radius: 3px;
  -webkit-transition: opacity .3s ease-in-out;
  transition: opacity .3s ease-in-out
}

.asRange .asRange-pointer .asRange-tip:before,
.asRange-scale .asRange-pointer .asRange-tip:before {
  position: absolute;
  top: -3px;
  left: 50%;
  display: inline-block;
  width: 6px;
  height: 6px;
  margin-left: -3px;
  content: "";
  background-color: #5d5c58;
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg)
}

.asRange .asRange-selected,
.asRange-scale .asRange-selected {
  position: absolute;
  left: 30%;
  z-index: 1;
  width: 40%;
  height: 8px;
  background-color: #ff2538;
  border-radius: 9px
}

.asRange .asRange-scale {
  display: none
}

.asRange-scale .asRange-scale {
  position: absolute;
  bottom: -22px;
  left: 0;
  width: 100%;
  height: 20px;
  padding: 0;
  margin: 0;
  list-style: none;
  background: url("../image/scale.png") 0 center no-repeat
}

.asRange-scale .asRange-scale li {
  position: absolute;
  top: 18px;
  width: 30px;
  height: 20px;
  padding: 0;
  margin: 0 0 0 -15px;
  text-align: center
}

.asRange-scale .asRange-scale li:first-child {
  left: 0
}

.asRange-scale .asRange-scale li:nth-child(2) {
  left: 33.3%
}

.asRange-scale .asRange-scale li:nth-child(3) {
  left: 66.6%
}

.asRange-scale .asRange-scale li:last-child {
  left: 100%
}

.radio-toolbar input[type="checkbox"]:checked+label {
  border: 1px solid #ff2538;
}

.year-range .asRange .asRange-pointer .asRange-tip,
.year-range .asRange-scale .asRange-pointer .asRange-tip {
  background: #181818;
  border-color: #181818;
}

.year-range .asRange .asRange-pointer .asRange-tip:before,
.year-range .asRange-scale .asRange-pointer .asRange-tip:before {
  background: #181818;
}

.year-range .asRange .asRange-selected,
.year-range .asRange-scale .asRange-selected {
  height: 4px;
  background: #db2424;
}

.year-range .asRange,
.asRange-scale {
  height: 4px;
  background: #2e2e2e;
}

.year-range .asRange .asRange-pointer,
.year-range .asRange-scale .asRange-pointer {
  top: -2px;
}

.year-range .asRange .asRange-pointer:before,
.year-range .asRange-scale .asRange-pointer:before {
  background: white;

}

.imdb-range .asRange .asRange-pointer .asRange-tip,
.imdb-range .asRange-scale .asRange-pointer .asRange-tip {
  background: #181818;
  border-color: #181818;
}

.imdb-range .asRange .asRange-pointer .asRange-tip:before,
.imdb-range .asRange-scale .asRange-pointer .asRange-tip:before {
  background: #181818;
}

.imdb-range .asRange .asRange-selected,
.imdb-range .asRange-scale .asRange-selected {
  height: 4px;
  background: #41464f;
}

.imdb-range .asRange,
.asRange-scale {
  height: 4px;
  background: #2e2e2e;
}

.imdb-range .asRange .asRange-pointer,
.imdb-range .asRange-scale .asRange-pointer {
  top: -2px;
}

.imdb-range .asRange .asRange-pointer:before,
.imdb-range .asRange-scale .asRange-pointer:before {
  background: white;

}

.vert::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 80%;
  z-index: 1;
  background: linear-gradient(to top, #000 20%, transparent);
}

.tbs button {
  opacity: 0.3;
}

.tbs button.active {
  opacity: 1;
}

.hidden-pfhvr .child-menu-d {
  display: none
}

.hidden-pfhvr:hover .child-menu-d {
  display: block
}

#cstk iframe {
  width: 100%;
  height: 100%;
}

@media only screen and (max-width: 768px) {
  #footerFixedDivInner {
    border: 1px solid #22232a;
    background: #090909;
    padding: 0;
  }

  #footerFixedDivWrapper a {
    background: #2e2e2e !important;
    color: white !important;
    font-size: 15px !important;
    padding: 2px 15px !important;
  }

  #footerFixedDivInner a {
    background: #090909 !important;
    display: block;
    width: 100%;
    height: auto;
    border: 5px solid #2e2e2e;
    padding: 0 !important;
  }
}

@media only screen and (min-width: 768px) {
  #footerFixedDiv {
    height: 110px !important;
  }

  #footerFixedDivInner {
    border: 1px solid #22232a;
    background: #090909;
    padding: 14px;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
  }

  #footerFixedDivWrapper a {
    background: white !important;
    color: black !important;
    font-size: 15px !important;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
    padding: 2px 15px !important;
  }

  #footerFixedDivInner a {
    background: #090909 !important;
    display: block;
    width: 100%;
    height: auto;
    border-radius: 6px;
    overflow: hidden;
    border: 1px solid #22232a;
    padding: 0 !important;
  }
}

.cls-1 {
  fill: #fff;
  stroke-width: 0px;
}

.grid-cols-6 {
  grid-template-columns: repeat(6, minmax(0, 1fr))
}

.lg-te {
  position: absolute;
  font-size: 35px;
  font-weight: bold;
  color: white;
  background: #000;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  bottom: 0;
  right: 14px;
}

.fws::-webkit-scrollbar {
  display: none;
}

.scrollleft {
  transition: all 200ms
}

.scrollright {
  transition: all 200ms
}

.scrollleft:hover {
  background: #fff;
  color: black;
  transform: scale(1.1);
}

.scrollright:hover {
  background: #fff;
  color: black;
  transform: scale(1.1);
}

.eps-t img {
  min-width: 96px;
}

#katman_1 {
  width: 86px;
  overflow: hidden;
  margin-bottom: -8px;
  height: 30px;
}

.grid-cols-6 {
  grid-template-columns: repeat(6, minmax(0, 1fr))
}

.lg-te {
  position: absolute;
  font-size: 35px;
  font-weight: bold;
  color: white;
  background: #000;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  bottom: 0;
  right: 14px;
}

.fws::-webkit-scrollbar {
  display: none;
}

.fws2::-webkit-scrollbar {
  display: none;
}

.scrollleft,
.scrollleft2 {
  transition: all 200ms
}

.scrollright,
.scrollright2 {
  transition: all 200ms
}

.scrollleft:hover,
.scrollleft2:hover {
  background: #fff;
  color: black;
  transform: scale(1.1);
}

.scrollright:hover,
.scrollright2:hover {
  background: #fff;
  color: black;
  transform: scale(1.1);
}

/* Pagination Styles for V9 Theme */
.pagination-wrapper {
  display: flex;
  justify-content: center;
  margin-top: 2rem;
}

.pagination {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  padding: 1rem;
  background-color: #191a1f;
  border: 1px solid #292b34;
  border-radius: 0.5rem;
  list-style: none;
  margin: 0;
}

.pagination li {
  list-style: none;
  margin: 0;
}

.pagination a,
.pagination span,
.pagination li a,
.pagination li span,
.pagination .pagination-link,
/* Bare anchors/strong directly inside container */
.pagination > a,
.pagination > span,
.pagination > strong {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.5rem;
  height: 2.5rem;
  padding: 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  text-decoration: none;
  border-radius: 0.375rem;
  transition: all 0.2s ease-in-out;
  color: #9ca3af !important;
  background-color: transparent !important;
  border: 1px solid #374151 !important;
  margin: 0 0.125rem;
}

.pagination a:hover,
.pagination li a:hover,
.pagination .pagination-link:hover {
  background-color: #374151;
  color: #ffffff;
  border-color: #4b5563;
  text-decoration: none;
}

.pagination .current,
.pagination span.current,
.pagination .active a,
.pagination li.active a,
.pagination strong,
/* Active when bare inside container */
.pagination > strong {
  background-color: #db2424 !important;
  color: #ffffff !important;
  border-color: #db2424 !important;
}

.pagination .current:hover,
.pagination .active a:hover,
.pagination li.active a:hover,
.pagination strong:hover {
  background-color: #b91c1c !important;
  border-color: #b91c1c !important;
}

.pagination .prev,
.pagination .next {
  padding: 0.5rem 0.75rem;
}

.pagination .disabled,
.pagination .disabled a,
.pagination li.disabled a {
  opacity: 0.5;
  cursor: not-allowed;
  pointer-events: none;
}

/* SVG icons in pagination */
.pagination svg {
  width: 1rem;
  height: 1rem;
}

.page-info {
  text-align: center;
  color: #9ca3af;
  margin-top: 1rem;
  margin-bottom: 2rem;
  font-size: 0.875rem;
}