
/* affichage prinicipale des activités */
select#filtre-classe {
    background-color: #ffcf0096;
    padding-left: 20px;
    width: 700px;
}

/* Grille principale */
.pv-grid {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 20px;
}

/* Carte d'activité */

.pv-grid a {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    transition: transform 0.2s ease;
    padding: 15px;
    width: 300px;
    align-items: stretch;
}
.pv-grid .complet {
    opacity: 0.4; 
    position: relative;
}

.complet-overlay {
  position: absolute;
  top: 40%;
  left: 0;
  right: 0;
  text-align: center;
  font-size: 24px;
  font-weight: bold;
  color: #000;
  opacity: 0.9;
  background-color: rgba(255,255,255,0.7);
  padding: 10px;
}

.pv-grid a:hover {
    transform: translateY(-5px);
    text-decoration: none;
    background: #faf1da;
}
.pv-grid a:hover  {
    text-decoration: none;
}

/* Image */
.pv-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    display: block;
}

/* Contenu de la carte */
.pv-card-content {
    padding: 15px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.pv-card h3 {
    margin: 0 0 10px 0;
    font-size: 1.2em;
    color: #333;
}

.pv-card p {
    margin: 5px 0;
    font-size: 0.9em;
    color: #666;
}

/* Bouton "Plus d'infos" */
.pv-btn {
    display: inline-block;
    margin-top: auto;
    padding: 10px;
    background-color: #0073aa; /* Bleu WordPress */
    color: white !important;
    text-align: center;
    text-decoration: none !important;
    border-radius: 4px;
}

.pv-btn:hover {
    background-color: #005177;
}



/* détails des activités */
.pv-detail-card table {
    width: 100%;
    margin-top: 15px;
    margin-bottom: 15px;
}

.pv-detail-card table td, .pv-detail-card table th {
    padding: 5px;
    border: 1px solid;
}

.pv-detail-info {
    padding-left: 10px;
    background-color: #faf1da;
}