 .btn-report a {
  display: inline-block;
  padding: 0.75em 1.5em;
  font-size: 1rem;
  font-family: sans-serif;
  font-weight: 600;
  color: #fff;
  background-color: #00356b;
  border: 2px solid #00356b;
  border-radius: 0; /* squared corners */
  text-decoration: none;
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease;
  margin-bottom: 30px;
}

.btn-report a:hover,
.btn-report a:focus {
  background-color: #002b54; /* a darker blue for hover */
  color: #fff;
  outline: none;
}

.btn-report:a:active {
  background-color: #e0e0e0;
}

.btn-report:a:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}