.badge {
  display: inline-block;
  padding: 0.35em 0.65em;
  font-size: 0.75em;
  font-weight: 600;
  line-height: 1;
  text-align: center;
  white-space: nowrap;
  vertical-align: baseline;
  border-radius: 0.375rem;
}

/* Color variants */
.badge-primary {
  color: #fff;
  background-color: #2271b1;
}

.badge-secondary {
  color: #fff;
  background-color: #6c757d;
}

.badge-success {
  color: #fff;
  background-color: #198754;
}

.badge-danger {
  color: #fff;
  background-color: #dc3545;
}

.badge-warning {
  color: #212529;
  background-color: #ffc107;
}

.badge-info {
  color: #fff;
  background-color: #0dcaf0;
}

.badge-light {
  color: #212529;
  background-color: #f8f9fa;
}

.badge-dark {
  color: #fff;
  background-color: #212529;
}
.btn-danger{
  display: inline-block;
  text-decoration: none;
  font-size: 13px;
  line-height: 2.15384615;
  min-height: 30px;
  margin: 0;
  padding: 0 10px;
  cursor: pointer;
  border-width: 1px;
  border-style: solid;

  border-radius: 3px;
  white-space: nowrap;
  box-sizing: border-box;
  background-color: #cc3300;
  color: #fff;
}
/* Hover effect for the button */
.btn-danger:hover {
  color: #fff;
  background-color: #c82333;
  border-color: #bd2130;
}

/* If you have a link inside a button */
.btn-danger a {
  color: #fff;
  text-decoration: none;
}

/* Optional: change link color inside the button on hover */
.btn-danger a:hover {
  color: #fff;
  text-decoration: underline;
}