body {
    font-family: 'Arial', sans-serif;
}

#particles-js {
    position: fixed;
    width: 100%;
    height: 100%;
    background-color: #fdf2f8;
    background-image: url("");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: 50% 50%;
    z-index: -1;
}

.unclickable-link {
    color: inherit;
    text-decoration: none;
    cursor: text;
    pointer-events: none;
}

/* Animation pour le header */
@keyframes slideIn {
    from {
        transform: translateX(-100%);
    }
    to {
        transform: translateX(0);
    }
}

#vertical-header.active {
    transform: translateX(0);
    animation: slideIn 0.3s ease-in-out;
}

/* Styles pour les graphiques */
canvas {
    max-width: 100%;
    height: auto;
}