/* Global Styles */
body {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    font-family: Arial, Helvetica, sans-serif;
    background-color: #f4f4f9;  /* Couleur de fond douce */
    margin: 0;
    height: 100vh;
}
#chart_div{
    margin-left: 25px;
}
.card {
    background-color: #ffffff;  /* Couleur de la carte */
    padding: 20px;
    border-radius: 15px;  /* Bordures arrondies */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);  /* Ombre douce */
    width: 350px;
    text-align: center;
    transition: all 0.3s ease; /* Transition fluide */
}

.card:hover {
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);  /* Ombre plus marquée au survol */
}

#downloadSpeedLabel, #downloadSpeed {
    margin: 10px;
    width: 100%;
    text-align: center;
    font-size: 18px;
    color: #333333;
}

#downloadSpeed {
    height: 40px;
    font-size: 18px;
    font-weight: bold;
    color: #4CAF50;  /* Vert pour la vitesse de téléchargement */
}


svg > g > text {
    font-size: 16px;
}

/* Button Style */
button {
    background-color: #353538;
    color: whitesmoke;
    font-size: large;
    cursor: pointer;
    border-radius: 25px;  /* Bordures du bouton arrondies */
    width: 160px;
    height: 50px;
    border: none;
    margin-top: 20px;
    transition: background-color 0.3s ease; /* Transition du bouton */
}

button:hover {
    background-color: #555555; /* Changement de couleur au survol */
}

/* Responsive Design */
@media (max-width: 768px) {
    .card {
        width: 90%;  /* Réduire la largeur de la carte sur les petits écrans */
    }

    button {
        width: 100%;  /* Bouton plein écran sur mobile */
    }
}
#uploadSpeedLabel, #uploadSpeed {
    margin: 10px;
    width: 100%;
    text-align: center;
    font-size: 18px;
    color: #333333;
}

#uploadSpeed {
    height: 40px;
    font-size: 18px;
    font-weight: bold;
    color: #FF5733; /* Couleur orange pour l'upload */
}

