@plugin "flowbite/plugin";
@source "../node_modules/flowbite";

/* Animation pour le chargement des cercles */
@keyframes progress {
    from { stroke-dasharray: 0, 100; }
}
.animate-progress {
    animation: progress 1.5s ease-out forwards;
}

/* --- PageSpeed Component Styles --- */

/* Animation des cercles SVG */
.ps-chart-ring {
    transition: stroke-dasharray 1.5s cubic-bezier(0.4, 0, 0.2, 1);
    /* Initial state (will be updated by JS) */
    stroke-dasharray: 0, 100;
}

/* Scrollbar personnalisée fine */
.custom-scrollbar::-webkit-scrollbar {
    width: 6px;
}
.custom-scrollbar::-webkit-scrollbar-track {
    background: transparent;
}
.custom-scrollbar::-webkit-scrollbar-thumb {
    background-color: rgba(148, 163, 184, 0.3); /* slate-400 with opacity */
    border-radius: 10px;
}
.custom-scrollbar::-webkit-scrollbar-thumb:hover {
    background-color: rgba(148, 163, 184, 0.5);
}

/* Animation Blob (Background orbes) */
@keyframes blob {
    0% { transform: translate(0px, 0px) scale(1); }
    33% { transform: translate(30px, -50px) scale(1.1); }
    66% { transform: translate(-20px, 20px) scale(0.9); }
    100% { transform: translate(0px, 0px) scale(1); }
}
.animate-blob {
    animation: blob 7s infinite;
}
.animation-delay-2000 {
    animation-delay: 2s;
}

/* Tooltips Transitions */
.tooltip {
    transition: opacity 0.3s ease, visibility 0.3s ease;
}
