#meApps {
    display: flex;
    padding: .75rem .5rem;
    width: 6rem;
    margin: 0 0 0 7rem;
    background-color: transparent;
    transition: border-color 0.3s;
    color: white;
}

#meApps option {
    background-color: transparent !important ;
    color: blue;
    padding: .5rem;
}

.custom-select-wrapper {
    position: relative;
    width: 300px; /* Largeur du select */
    user-select: none;
}

/* Le déclencheur (comme un select) */
.select-trigger {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: white;
    padding: 10px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    cursor: pointer;
    transition: border-color 0.3s;
}

.select-trigger:hover { border-color: #007bff; }

/* Conteneur des options (caché par défaut) */
.apps-options-container {
    position: absolute;
    top: 110%;
    left: 0;
    right: 0;
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    display: none; /* Caché */
    z-index: 100;
    max-height: 300px;
    overflow-y: auto;
}

/* Affichage quand actif */
.apps-options-container.active { display: block; }

/* Chaque "option" */
.app-option {
    display: flex;
    align-items: center;
    padding: 12px 15px;
    cursor: pointer;
    border-bottom: 1px solid #f0f0f0;
    transition: background 0.2s;
}

.app-option:hover { background: #f8f9fa; }
.app-option:last-child { border-bottom: none; }

/* Styles communs (Icônes et Textes) */
.app-icon {
    width: 40px; height: 40px;
    border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    margin-right: 12px; color: white;
}

.math-bg { background: #6a11cb; }
.py-bg { background: #306998; }
.node-bg { background: #3c873a; }

.app-info { display: flex; flex-direction: column; }
.app-title { font-weight: 600; color: #333; font-size: 0.95rem; }
.app-tag { font-size: 0.75rem; color: #888; }