/* Admin Interface Enhancements */
.main-content__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
}

.main-content__header > div {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.button {
  display: inline-block;
  padding: 0.5rem 1rem;
  background-color: var(--netflix-red);
  color: var(--netflix-white);
  text-decoration: none;
  border-radius: 4px;
  font-weight: 500;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.button:hover {
  background-color: #f40612;
  transform: scale(1.02);
}

