#addNewActorBtn {
  margin-top: 2rem;
  width: 80%;
  font-size: 0.75rem;

  @media (min-width: 768px) {
    font-size: 1rem;
    padding: 12px 1rem;
  }

  color: #ffffff;

  background-color: #00b36b; /* Futuristisch groen */
  font-weight: bold;
  text-align: center;
  border-radius: 8px; /* Zachtere randen */
  border: none;
  cursor: pointer;
  box-shadow: 2px 4px 8px rgba(0, 0, 0, 0.2); /* Subtiele schaduw */
  transition: all 0.3s ease-in-out;

  &:hover {
    background-color: #009a5a; /* Iets donkerder groen */
    transform: translateY(-2px); /* Lichte lift bij hover */
  }
}
