/* Collapsible Anime Boxes Stuff */
/* Style the button that is used to open and close the collapsible content */
.collapsible {
  background-color: black;
  color: white;
  cursor: pointer;
  padding: 16px;
  width: 100%;
  border: none;
  text-align: left;
  outline: 1px solid grey;
  font-size: 15px;
}

/* Add a background color to the button if it is clicked on (add the .active class with JS), and when you move the mouse over it (hover) */
.activebutton, .collapsible:hover {
  background-color: #000b2b;
  color: white;
}

/* Style the collapsible content. Note: hidden by default */
.content {
  padding: 0 18px;
  display: none;
  overflow: hidden;
  background-color: black;
  border: 1px solid gray
}

.collapsible:after {
  content: '\02795'; /* Unicode character for "plus" sign (+) */
  font-size: 13px;
  color: white;
  float: right;
  margin-left: 5px;
}

.activebutton:after {
  content: "\2796"; /* Unicode character for "minus" sign (-) */
}

/* Light mode shall not interfere with the look of the anime pages. */
.content {
  background-color:black;
  font-size:24px;
  color: white;
}

.animelogo {
  max-width: 100%;
  max-height: 50vh;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.animetags {
  font-size:14px;
  color:#b1b3b1;
}

.animetags a {
  color:#b1b3b1;
}

.animetags a:hover{
  color:#e6e6e6;
}

.animevideo {
  width: 100%;
  max-width:75vw;
  aspect-ratio: 16/9;
  margin: auto;
}

.episodelist {
  width:95%;
  max-width: 90%;
  text-align: center;
  margin: auto;
}

.notice {
  background: red;
  margin-bottom: 10px;
}