/* Theme global Bluepicking */

/* Cards arrondies et ombre douce */
.card {
    border-radius: 0.75rem;
    box-shadow: 0 0.25rem 0.75rem rgba(0, 0, 0, 0.05);
}

/* Header de card uniforme */

/* Boutons principaux plus arrondis */
.btn {
    border-radius: 0.5rem;
}

/* Liens navbar sans souligné */
.nav-link {
    text-decoration: none !important;
}

/* Centrage flex utilitaire */

/* ===== Footer ===== */
.footer {
  font-size: .95rem;
}
.footer-links a {
  color: inherit;
  text-decoration: none;
  opacity: .9;
}
.footer-links a:hover {
  text-decoration: underline;
  opacity: 1;
}
.footer-links .list-inline-item + .list-inline-item::before {
  content: "·";
  margin: 0 .5rem;
  color: rgba(0,0,0,.35);
}

/* ===== Admin toolbar: search centré et large ===== */
.admin-toolbar-center {}

.admin-toolbar-center .form-control-w-560 {
  width: 560px;
  max-width: 100%;
}
@media (max-width: 576px) {
  .admin-toolbar-center .form-control-w-560 {
    width: 100%;
  }
}

/* Input un peu plus haut qu'un .form-control-sm */
.admin-toolbar-center .form-control-tall {
  padding-top: .55rem;
  padding-bottom: .55rem;
}

/* Bouton croix (suppression) discret */
.btn-ghost-danger {
  color: #dc3545;
  background: transparent;
  border: 0;
  padding: .25rem .35rem;
  line-height: 1;
  border-radius: .25rem;
}
.btn-ghost-danger:hover,
.btn-ghost-danger:focus {
  color: #a71d2a;
  background: rgba(220,53,69,.08);
}

