body {
    font-family: "Segoe UI", sans-serif;
  }

.navbar {
    padding: 12px 20px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
}

.navbar-brand img {
    max-height: 45px;
    margin-left: 0px;
}

.navbar-nav .nav-link {
    font-weight: bold;
    transition: color 0.3s ease-in-out;
}

.navbar-nav .nav-link:hover {
    color: #d4edda !important;
}
  
/* ✅ En-tête aligné */
.header-bar {
    border-bottom: 1px solid #dee2e6;
    padding-bottom: 10px;
  }
  
  /* ✅ Champ date harmonieux */
  .filter-date {
    min-width: 200px;
    max-width: 250px;
  }
  
  /* ✅ Bouton flottant bien visible */
  .new-pose-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    font-size: 1.8rem;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    transition: all 0.2s ease;
  }
  
  .new-pose-btn:hover {
    transform: scale(1.1);
  }
  
  .card {
    border-radius: 12px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    height: 100%;
  }
  
  .card:hover {
    transform: scale(1.02);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
  }
  
  .card-title {
    color: #198754;
    font-size: 1.2rem;
    font-weight: 600;
  }
  
  .badge-pose {
    font-size: 0.85rem;
    background-color: #e9f8f1;
    color: #198754;
  }
  
  .img-thumb {
    width: 100%;
    height: 180px;
    object-fit: contain;
    border-radius: 8px;
  }
  