/* LFE Custom Styles */
/* Complement Tailwind with minimal custom CSS */

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Custom scrollbar for sidebar */
aside::-webkit-scrollbar {
    width: 4px;
}
aside::-webkit-scrollbar-track {
    background: transparent;
}
aside::-webkit-scrollbar-thumb {
    background: rgba(244, 196, 48, 0.3);
    border-radius: 4px;
}

/* Print styles for certificates */
@media print {
    nav, aside, header, footer, .no-print {
        display: none !important;
    }
    main {
        padding: 0 !important;
    }
}

/* Animation for flash messages */
@keyframes slideIn {
    from { transform: translateX(100%); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

.flash-message {
    animation: slideIn 0.3s ease-out;
}

/* Table row hover */
.table-hover tr:hover {
    background-color: rgba(61, 36, 99, 0.04);
}

/* Gold gradient for hero sections */
.hero-gradient {
    background: linear-gradient(135deg, #3D2463 0%, #5A3D8A 50%, #3D2463 100%);
}

/* Card hover effect */
.card-hover {
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.card-hover:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(61, 36, 99, 0.15);
}

/* Social Share Buttons */
.lfe-share-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 9999px;
    background-color: #F3F4F6;
    color: #6B7280;
    transition: all 0.2s ease;
    cursor: pointer;
    border: none;
    text-decoration: none;
}
.lfe-share-btn:hover {
    background-color: #3D2463;
    color: #FFFFFF;
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(61, 36, 99, 0.3);
}
.lfe-share-btn-primary {
    width: auto;
    padding: 0 12px;
    background-color: #3D2463;
    color: #FFFFFF;
}
.lfe-share-btn-primary:hover {
    background-color: #5A3D8A;
}
.lfe-share-section {
    padding: 16px 0;
}

/* Status badges */
.badge-pending { background-color: #FEF3C7; color: #92400E; }
.badge-verified, .badge-approved, .badge-active { background-color: #D1FAE5; color: #065F46; }
.badge-rejected, .badge-revoked { background-color: #FEE2E2; color: #991B1B; }
.badge-attended { background-color: #DBEAFE; color: #1E40AF; }
