/* Targets the container */
div.book-button {
  margin: 15px auto !important;
  text-align: center !important;
  display: block !important;
}

/* Targets the link inside the container */
div.book-button a {
  display: inline-block !important; /* Prevents it from being "huge" */
  background-color: #8b0000 !important; /* Deep Red */
  color: #ffffff !important;
  padding: 10px 20px !important;
  min-width: 140px !important;
  text-decoration: none !important;
  text-transform: uppercase !important;
  font-family: 'Courier New', Courier, monospace !important;
  font-weight: bold !important;
  border: 1px solid #000000;
  box-shadow: 4px 4px 0px #000000;
  transition: 0.3s ease;
}

/* Hover State */
div.book-button a:hover {
  background-color: #7000FF !important; /* Cyber Purple */
  transform: translateY(-2px);
}