/* Styles personnalisés pour llmlogs.fr */

.card {
    background-color: #ffffff;
    border-radius: 0.75rem; /* 12px */
    padding: 1.5rem; /* 24px */
    border: 1px solid #e5e7eb; /* gray-200 */
    box-shadow: 0 10px 15px -3px rgba(15, 23, 42, 0.08),
                0 4px 6px -4px rgba(15, 23, 42, 0.06);
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.card:hover {
    box-shadow: 0 20px 25px -5px rgba(15, 23, 42, 0.12),
                0 10px 10px -5px rgba(15, 23, 42, 0.08);
    transform: translateY(-2px);
}

.card-site {
    background: linear-gradient(white, white) padding-box,
                linear-gradient(135deg, rgba(139, 92, 246, 0.3), rgba(99, 102, 241, 0.3), rgba(34, 211, 238, 0.3)) border-box;
    transition: all 0.3s ease;
}

.card-site:hover {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.2);
    transform: translateY(-4px);
}

.btn-primary {
    background: linear-gradient(to right, #9333ea, #4f46e5);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: 600;
    transition: all 0.2s;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.btn-primary:hover {
    background: linear-gradient(to right, #7e22ce, #4338ca);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.btn-secondary {
    background: white;
    color: #9333ea;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: 600;
    border: 2px solid #9333ea;
    transition: all 0.2s;
}

.btn-secondary:hover {
    background-color: #faf5ff;
}

.input-field {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid #d1d5db;
    border-radius: 0.5rem;
    transition: all 0.2s;
}

.input-field:focus {
    outline: none;
    ring: 2px;
    ring-color: #9333ea;
    border-color: transparent;
}

.nav-link {
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    transition: colors 0.2s;
    color: #4b5563;
}

.nav-link:hover {
    color: #9333ea;
}

.nav-link-active {
    background: linear-gradient(to right, #faf5ff, #f0e9ff);
    color: #7e22ce;
    font-weight: 600;
}

.stat-number-purple {
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(to right, #9333ea, #7e22ce);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-number-indigo {
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(to right, #4f46e5, #4338ca);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-number-cyan {
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(to right, #06b6d4, #0891b2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-number-pink {
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(to right, #ec4899, #db2777);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-number-orange {
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(to right, #f97316, #ea580c);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-number-emerald {
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(to right, #10b981, #059669);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

