/* PDF Manager Pro - Frontend Styles */

/* Base styles are handled inline by the shortcode/elementor widget */
/* This file provides fallback and additional styles */

.pdf-manager-shortcode,
.pdf-manager-widget {
    direction: ltr;
    text-align: left;
}

.pdf-manager-shortcode *,
.pdf-manager-widget * {
    box-sizing: border-box;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .pdf-manager-grid-sc,
    .pdf-manager-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 20px !important;
    }
    
    .pdf-manager-header-title {
        font-size: 28px !important;
    }
    
    .pdf-manager-header-subtitle {
        font-size: 14px !important;
    }
}

@media (max-width: 480px) {
    .pdf-manager-grid-sc,
    .pdf-manager-grid {
        grid-template-columns: 1fr !important;
    }
    
    .pdf-manager-header-title {
        font-size: 24px !important;
    }
}

/* Animation */
.pdf-manager-card-sc,
.pdf-manager-card {
    animation: fadeInUp 0.5s ease forwards;
    opacity: 0;
}

.pdf-manager-card-sc:nth-child(1),
.pdf-manager-card:nth-child(1) { animation-delay: 0.1s; }
.pdf-manager-card-sc:nth-child(2),
.pdf-manager-card:nth-child(2) { animation-delay: 0.2s; }
.pdf-manager-card-sc:nth-child(3),
.pdf-manager-card:nth-child(3) { animation-delay: 0.3s; }
.pdf-manager-card-sc:nth-child(4),
.pdf-manager-card:nth-child(4) { animation-delay: 0.4s; }
.pdf-manager-card-sc:nth-child(5),
.pdf-manager-card:nth-child(5) { animation-delay: 0.5s; }
.pdf-manager-card-sc:nth-child(6),
.pdf-manager-card:nth-child(6) { animation-delay: 0.6s; }

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
