body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
    text-align: center;
}

header {
    background-color: #007BFF;
    color: white;
    padding: 20px;
    font-size: 24px;
    justify-content: space-between;
    align-items: center;
    border-radius: 30px;
}

.info-btn {
    background-color: #28a745;
    border: none;
    padding: 10px 15px;
    color: white;
    cursor: pointer;
    font-size: 16px;
    border-radius: 5px;
}

.info-btn:hover {
    background-color: #218838;
}

.app-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 20px;
}

.app-card {
    background: white;
    width: 150px;
    margin: 15px;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: 0.3s;
    text-align: center;
}

.app-card:hover {
    transform: scale(1.05);
}

.app-card img {
    width: 80px;
    height: 80px;
}

.app-card p {
    font-size: 16px;
    margin-top: 10px;
    font-weight: bold;
}

/* Style spécifique pour le bouton Infos */
.info-card {
    background-color: #f4f4f4;
}

.info-card:hover {
    background-color: #ddd;
}

/* Style de la fenêtre modale */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}

.modal-content {
    background-color: white;
    padding: 20px;
    border-radius: 10px;
    width: 400px;
    margin: 15% auto;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    text-align: left;
}

.close {
    float: right;
    font-size: 24px;
    cursor: pointer;
}
