html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 60px;
}

.form-floating > .form-control-plaintext::placeholder, .form-floating > .form-control::placeholder {
  color: var(--bs-secondary-color);
  text-align: end;
}

.form-floating > .form-control-plaintext:focus::placeholder, .form-floating > .form-control:focus::placeholder {
  text-align: start;
}

body {
  background-color: #f4f7fa;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: #333;
}
.navbar-brand {
  font-weight: bold;
  color: #BD2860;
}
.dashboard-header {
  text-align: center;
  padding: 2rem 0;
  background: linear-gradient(to right, #BD2860, #673AB7);
  color: #fff;
  border-radius: 1rem;
  margin-bottom: 3rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}
.card {
  border: none;
  border-radius: 1.5rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
  overflow: hidden;
}
.card:hover {
  transform: translateY(-8px);
}
.card-body {
  padding: 2rem;
}
.text-accepire-red { color: #BD2860; }
.bg-accepire-red { background-color: #BD2860 !important; }
.bg-accepire-green { background-color: #86C94C !important; }
.bg-accepire-purple { background-color: #673AB7 !important; }
.card-title {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}
.fs-2 {
  font-weight: bold;
  font-size: 2.5rem;
}
.table thead {
  background-color: #BD2860;
  color: white;
}
.table tbody tr:hover {
  background-color: rgba(103, 58, 183, 0.1);
}
.table td, .table th {
  vertical-align: middle;
}
.table td {
  font-size: 0.95rem;
}