.tutorial {
  width: 600px;
  text-align: center;
  margin: auto;
}

figure.image {
  display: flex;
  justify-content: center;
  background-color: black;
}

figure .image img {
  width: 256px;
}

.notification {
  margin-top: 20px !important;
}

.results {
  max-height: 500px;
  overflow-y: scroll;
}

.title .icon {
  margin-left: 15px;
}

.hero {
  margin-bottom: 20px;
}

.forms {
  display: flex;
  justify-content: space-around;
}

.dropdown-item {
  display: flex;
  align-items: center;
  height: 60px;
}

.dropdown-item img {
  height: 50px;
  margin-right: 10px;
}

/* Top 5 weekly section */
.top-five-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}

@media (max-width: 768px) {
  .top-five-grid {
    grid-template-columns: 1fr;
  }
}

.movie-card {
  background: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(10, 10, 10, 0.08);
  display: flex;
  flex-direction: column;
}

.movie-card .poster {
  background: #000;
  display: flex;
  justify-content: center;
}

.movie-card .poster img {
  width: 100%;
  height: auto;
  display: block;
}

.movie-card .body {
  padding: 12px;
}

.movie-card .name {
  font-weight: 700;
  margin-bottom: 8px;
  line-height: 1.2;
}

.kv {
  font-size: 0.95rem;
  line-height: 1.35;
}

.kv b {
  font-weight: 700;
}

.header-row{
  display:flex;
  align-items:center;
  gap:16px;
  flex-wrap:wrap;
  justify-content:center;   /* centers the group */
  position: relative;
}
.header-left{
  position: absolute;       /* pins Movie Value on the left */
  left: 0;
}
.header-right{
  display:flex;
  justify-content:center;   /* centers the Search For a Movie box */
  width: 100%;
}

.header-title{ margin-bottom: 0; }
.header-tutorial{
  background: rgba(255,255,255,0.15);
  padding: 10px 12px;
  border-radius: 10px;
}
.header-tutorial-title{
  font-weight: 800;
  font-size: 1.05rem;
  line-height: 1.1;
}
.header-tutorial-sub{
  opacity: 0.95;
  font-size: 0.95rem;
}
@media (max-width: 768px){
  .header-row{ justify-content:flex-start; }
  .header-tutorial{ width: 100%; }
}

