/* --- FOND D'ÉCRAN ET GLOBAL --- */
body {
    /* Un dégradé sombre et profond */
    background: radial-gradient(circle at top right, #1e293b, #0f172a);
    background-attachment: fixed;
    font-family: 'Inter', sans-serif;
}

/* --- BARRE DE STATS (WIDGETS) --- */
#information-widgets {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 1.5rem !important;
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 2rem !important;
}

/* --- TITRES DES GROUPES --- */
.service-group-name {
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 700 !important;
    color: #38bdf8 !important; /* Un bleu néon sympa */
    margin-bottom: 10px;
    text-shadow: 0 0 10px rgba(56, 189, 248, 0.3);
}

/* --- CARTES DES SERVICES (CLOUD, MDP...) --- */
.service-card {
    background: rgba(255, 255, 255, 0.05) !important;
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    border-radius: 12px !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

/* Effet au survol des boutons */
.service-card:hover {
    background: rgba(255, 255, 255, 0.1) !important;
    border-color: #38bdf8 !important;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

/* Texte des descriptions */
.service-description {
    color: #94a3b8 !important;
    font-weight: 400;
}

/* --- BARRE DE RECHERCHE --- */
.information-widget-search input {
    background: rgba(0, 0, 0, 0.2) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    border-radius: 8px !important;
    color: white !important;
}

/* --- BARRES DE RESSOURCES (CPU/RAM) --- */
.resource-usage div {
    background-color: #38bdf8 !important; /* Couleur des barres de progression */
}

#footer {
    display: none !important;
}
