/* public/button.min.css */
.btn {
  display: inline-block;
  padding: 10px 20px;
  font-size: 1rem;
  font-weight: 600;
  border: none;
  border-radius: 5px;
  background-color: #0057b7;
  color: #fff;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.btn:hover {
  background-color: #003f8c;
}

.btn:disabled {
  background-color: #ccc;
  cursor: not-allowed;
}
