#manga-info {
    display: flex;
    flex-direction: row;
    max-width: 930px;
    margin: auto;
  }
  
  #manga-info p,
  #manga-info-right h2 {
    color: #b5fff9;
  }
  
  #manga-info-left {
    width: 235px;
    float: left;
  }
  
  #manga-info-right {
    overflow: hidden;
    width: 100%;
    margin-left: 0.8em;
  }
  
  #manga-info-right h1 {
    font-size: 2rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 0;
    color: #ffffff;
  }
  
  #manga-info-right h2 {
    margin-bottom: 1em;
    font-size: 1.2em;
  }
  
  .manga-thumb {
    border-radius: 10px;
    display: block;
    aspect-ratio: 2 / 3;
  }
  
  .info-desc,
  #chapter-list {
    padding: 0.5em;
    border-radius: 10px;
    width: 100%;
    background-color: #2f2f4f;
    padding-right: 1em;
    margin-bottom: 15px;
    color: #e0e0f8;
  }
  
  .info-desc-line {
    background-color: #00eaff;
    height: 3px;
  }
  
  .desc {
    color: #f1f1f1;
  }
  
  .genre-list {
    display: flex;
    flex-direction: row;
    width: 100%;
    gap: 5px;
    flex-wrap: wrap;
    margin-bottom: 1em;
  }
  
  .genre-list-item {
    background-color: #2f2f4f;
    padding: 5px 10px;
    color: #fff;
    border-radius: 10px;
    cursor: pointer;
    border-bottom: 2px solid #00eaff;
  }
  
  #rating-box {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    padding: 10px;
    color: #ffde59;
    justify-content: center;
    font-size: 1.2em;
  }
  
  #rating-box i:hover {
    text-shadow: 0 0 10px #ffde59;
    cursor: pointer;
  }
  
  .extra-manga-info {
    background-color: #2f2f4f;
    padding: 0.5em;
    width: 100%;
    border-radius: 10px;
    color: #e0e0f8;
  }
  
  .extra-manga-info p {
    margin-bottom: 10px;
    font-size: 0.8em;
  }
  
  .extra-manga-info span {
    color: #c9e4ff;
    font-size: 1.2em;
  }
  
  .extra-manga-info-right {
    display: none;
  }
  
  #chapter-list {
    min-height: 300px;
  }
  
  #chapter-list hr {
    height: 3px;
    background-color: #00eaff;
    margin-top: 0;
  }
  
  .chapter-list-title {
    font-size: 1.5em;
    color: #ffffff !important;
    margin-bottom: 10px;
  }
  
  #switch-list-order {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 30px;
    width: 30px;
    background-color: #00eaff;
    color: #f1f1f1;
    box-shadow: 0 0 5px #1a1a2e;
  }
  
  .chapter-start-end {
    display: flex;
    flex-direction: row;
    gap: 20px;
    margin-bottom: 1em;
  }
  
  .chapter-start-end a {
    display: block;
    width: 100%;
    padding: 10px 0;
    text-align: center;
    background-color: #2f2f4f;
    border-radius: 10px;
    color: #f1f1f1;
    font-size: 1.2em;
    font-weight: 700;
    transition: 0.5s;
  }
  
  .chapter-start-end a span {
    color: #9999cc;
    font-size: 0.8em;
    font-weight: 400;
  }
  
  .chapter-start-end a:hover {
    background-color: #00eaff;
  }
  
  #search-chapter-list {
    background-color: #2f2f4f;
    border: none;
    color: #f1f1f1;
    border-radius: 10px;
    border-bottom: 2px solid #00eaff;
  }
  
  .chapter-list-holder {
    background-color: #2f2f4f;
    width: 100%;
    padding: 10px;
    border-radius: 10px;
    min-height: 40px;
    max-height: 300px;
    overflow-y: scroll;
  
    --sb-track-color: #1f1f38;
    --sb-thumb-color: #00f6ff;
    --sb-size: 10px;
  }
  
  .chapter-list-holder::-webkit-scrollbar {
    width: var(--sb-size);
  }
  
  .chapter-list-holder::-webkit-scrollbar-track {
    background: var(--sb-track-color);
    border-radius: 6px;
  }
  
  .chapter-list-holder::-webkit-scrollbar-thumb {
    background: var(--sb-thumb-color);
    border-radius: 6px;
  }
  
  @supports not selector(::-webkit-scrollbar) {
    .chapter-list-holder {
      scrollbar-color: var(--sb-thumb-color) var(--sb-track-color);
    }
  }
  
  .chapter-list-item {
    background-color: #2f2f4f;
    border: 0.5px solid #464646;
    transition: 0.2s;
    color: #e0e0f8;
    padding: 0.3em 1em;
    margin: 0.4em 0;
    border-radius: 10px;
    font-size: 1.2em;
  }
  
  .chapter-list-item:visited {
    color: #00eaff !important;
  }
  
  .chapter-list-item span {
    display: block;
  }
  
  .chapter-date {
    font-size: 0.7em;
    color: #9999cc;
  }
  
  .chapter-list-item:hover {
    background-color: #1a1a2e;
  }
  
  .mangosm-keywords {
    font-size: 12px;
  }
  
  @media (max-width: 768px) {
    #manga-info {
      flex-direction: column;
      position: relative;
    }
  
    #manga-info-left {
      width: 100%;
      float: none !important;
    }
  
    #manga-info-right {
      margin-left: 0 !important;
    }
  
    .info-desc,
    #chapter-list {
      padding-right: 0.5em !important;
    }
  
    .manga-thumb {
      max-width: 235px;
      margin: auto;
      display: block;
    }
  
    .container {
      max-width: 600px;
    }
  
    .extra-manga-info-right {
      display: grid;
      grid-template-columns: 1fr 1fr;
      margin-bottom: 15px;
      padding: 0.5em;
    }
  
    .extra-manga-info-left {
      display: none;
    }
  }
  