html {
    background-color: #151515;
}

h1 {
     text-align: center;
     color: white;
     font-family: Arial, Helvetica, sans-serif;
}

button {
  border: none;
  padding: 10px 16px;
  margin: 5px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  border-radius: 5px;
  font-size: 16px;
  transition-duration: 0.3s;
  cursor: pointer; /* Mouse cursor becomes a hand */
}

button:hover {
  background-color: #0F3325;
  color: white;
}

.admin-button {
    background-color: #003366;
    color: white;
}

p {
    color: white;
    background-color: #003366;
    padding: 5px 15px;
    border-radius: 10px;
    width: fit-content;
    font-family: Arial, Helvetica, sans-serif;

    /* Center the block in the middle of the page: */
    margin-left: auto;
    margin-right: auto;
}

.little-block {
    color: white;
    background-color: #0066CC;
    padding: 1px 10px;
    border-radius: 10px;
    width: fit-content;
    font-family: Arial, Helvetica, sans-serif;

    /* Center the block in the middle of the page: */
    margin-left: auto;
    margin-right: auto;
    margin: 5px;
}

.centered-cards {
    position: fixed;
    left: 5%;
    right: 5%;
}

.centered-title {
    display: flex;
    justify-content: center;
    align-items: center;
}

.centered-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
}

.filter-button {
    background-color: #330033;
    color: white;
}

.centered-filters {
    display: flex;
    justify-content: center;
    align-items: center;
}

select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-color: #2d2d2d;
  border: none;
  color: #fff;
  padding: 10px 16px;
  font-size: 16px;
  border-radius: 5px;
  cursor: pointer;
}

select:focus {
  outline: none;
}

select option {
  background-color: #2d2d2d;
  color: #fff;
  padding: 10px 16px;
  font-size: 16px;
  border-radius: 5px;
}

select option:checked {
  background-color: #4d4d4d;
}

.centered-poster {
    display: flex;
    justify-content: center;
    align-items: center;
}

.poster-image {
    border-radius: 10px;
    max-width: 15%;
    height: auto;
}

.media-type-image {
    width: 25px;
    height: auto;
    color: white;
}

.button-available {
    background-color: #006600;
    color: white;
}

.button-not-available {
    background-color: #660000;
    color: white;
}