/* CSS */
.btn-minimal {
  background-color: #000; /* Primary Blue */
  color: #eeeeee; /* White text */
  padding: 12px 24px; /* Internal spacing */
  font-family: "Zen Dots", sans-serif;
  font-size: 13px;
  font-weight: 300;
  letter-spacing: 0.2em;
  border: none; /* Removes default browser borders */
  border-radius: 3px; /* Smooth rounded corners */
  cursor: pointer; /* Pointer finger cursor */
  transition: background-color 0.3s ease; /* Smooth hover transition */
  margin-top:5px;
  margin-bottom:5px
}

/* Hover State */
.btn-minimal:hover {
  background-color: #0056b3; /* Darker blue */
}
