:root {
  --text-color: white;
}

body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #555555;
}

.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #222;
  color: white;
  padding: 10px 20px;
  position: sticky;
  top: 0;
}

.title {
  font-size: 20px;
  font-weight: bold;
}

.information {
  padding: 20px;
  color: var(--text-color);
}

.submit-movie {
  padding: 20px;
  color: var(--text-color);
}

.nav-buttons button {
  margin-left: 10px;
  padding: 8px 14px;
  border: none;
  background-color: #555;
  color: white;
  cursor: pointer;
  border-radius: 4px;
}

.nav-buttons button:hover {
  background-color: #777;
}

#movie-grid-container {     
   padding: 20px;
   display: grid;
   grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
   gap: 15px;
   color: var(--text-color);
}

#grid-item-a {
   grid-column: 1 / -1;
   font-weight: bold;
   border: none;
}

#grid-item-b {
   grid-column: 1 / -1;
   font-weight: bold;
   border: none;
}

.movie-card {
  background: #1e1e1e;
  padding: 15px;
  border-radius: 10px;
  color: white;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}
