/* =========================================
   STYLES DU CATALOGUE DYNAMIQUE
   ========================================= */

#main-content ul.catalogue-liste {
    padding: 0;
    margin-top: 20px;
    margin-bottom: 40px;
    list-style-type: none; 
}

#main-content ul.catalogue-liste li {
    margin-bottom: 20px;
    padding-left: 0; 
}

#main-content ul.catalogue-liste li::before {
    content: none; 
}

#main-content ul.catalogue-liste li > a.app-card {
    display: flex;
    align-items: center;
    padding: 15px;
    background-color: #fcfcfc;
    border: 1px solid #eaeaea;
    border-radius: 10px;
    text-decoration: none; /* Annule le soulignement */
    color: inherit; /* Annule le texte orange pour prendre la couleur normale */
    font-weight: normal; /* Annule le gras global appliqué sur les liens */
    transition: transform 0.2s, box-shadow 0.2s;
}

/* Effet de survol sur toute la carte */
#main-content ul.catalogue-liste li > a.app-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0,0,0,0.05);
}

/* Style de l'image */
.app-icon {
    width: 70px;
    height: 70px;
    object-fit: cover;
    border-radius: 12px;
    margin-right: 20px;
    background-color: var(--d-light-blue);
}

.placeholder-icon {
    flex-shrink: 0; 
}

/* Style du conteneur de texte */
.app-text {
    display: flex;
    flex-direction: column;
}

/* Style du titre de l'application */
.app-title {
    font-size: 1.3rem;
    color: var(--d-dark-blue);
    margin-bottom: 5px;
    font-weight: bold; 
    transition: color 0.2s; 
}

/* Le titre devient orange uniquement quand on survole la carte entière */
#main-content ul.catalogue-liste li > a.app-card:hover .app-title {
    color: var(--d-orange);
}

/* Style de la description */
.app-description {
    font-size: 0.9rem;
    color: #555;
    line-height: 1.4;
}