body {
  background-color: #f8f9fa;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.cursor-pointer {
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
}

.cursor-pointer:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.card {
  border: none;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.btn-group .btn {
  border-radius: 4px;
}

.btn-group .btn.active {
  font-weight: bold;
}

#showPoster {
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.list-group-item {
  border-left: 4px solid #dee2e6;
  transition: border-color 0.2s;
}

.list-group-item:hover {
  background-color: #f8f9fa;
  border-left-color: #007bff;
}

.navbar-brand {
  font-size: 1.5rem;
  font-weight: bold;
}

h4 {
  color: #333;
  margin-top: 1.5rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid #007bff;
}