.img-thumbnail {
    width: 150px; /* Largeur fixe */
    height: auto; /* Garde les proportions */
    object-fit: cover; /* Ajuste bien l’image sans la déformer */
}
.creation-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: 1px solid #ddd;
    padding: 10px;
    margin-bottom: 10px;
}

.creation-image img {
    width: 120px; /* Taille ajustée */
    height: auto;
    object-fit: cover;
    border-radius: 5px;
}

.creation-info {
    flex-grow: 1;
    padding: 0 20px; /* Espace entre l’image et le texte */
}

.creation-actions {
    display: flex;
    flex-direction: column; /* Boutons en colonne */
    gap: 10px;
    align-items: flex-end;
}
.table td {
    vertical-align: middle;
}

.img-thumbnail {
    width: 100px; /* Taille ajustée */
    height: auto;
    object-fit: cover;
    border-radius: 5px;
}

.action-buttons {
    display: flex;
    justify-content: flex-end; /* Aligne les boutons à droite */
    gap: 10px; /* Espacement entre les boutons */
}

.landscape-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.landscape-card {
    width: 250px;
    background: #f8f9fa;
    padding: 15px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.landscape-card img {
    width: 100%;
    height: auto;
    border-radius: 6px;
}

.landscape-card h3 {
    margin-top: 10px;
}

.landscape-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.landscape-card {
    width: 250px;
    height: 400px; /* Fixe une hauteur uniforme */
    background: #f8f9fa;
    padding: 15px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column;
    justify-content: space-between; /* Équilibre l'affichage */
}

.landscape-card img {
    width: 100%;
    height: 200px; /* Fixe la hauteur pour éviter les différences */
    object-fit: cover; /* Ajuste l'image sans déformation */
    border-radius: 6px;
}

.landscape-card h3, .landscape-card p {
    flex-grow: 1; /* Permet aux textes de remplir l’espace harmonieusement */
}

.landscape-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.landscape-card {
    width: 250px;
    height: 400px; /* Fixe une hauteur uniforme */
    background: #f8f9fa;
    padding: 15px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column;
    justify-content: space-between; /* Équilibre l'affichage */
}

.landscape-card img {
    width: 100%;
    height: 200px; /* Fixe la hauteur pour éviter les différences */
    object-fit: cover; /* Ajuste l'image sans déformation */
    border-radius: 6px;
}

.landscape-card h3, .landscape-card p {
    flex-grow: 1; /* Permet aux textes de remplir l’espace harmonieusement */
    margin-bottom: 10px; /* Ajoute un petit espace pour éviter un effet collé */
}

