/* Elfsight Widget Fallback Styles */
.elfsight-fallback {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border: 2px dashed #dee2e6;
    border-radius: 12px;
    padding: 40px 20px;
    text-align: center;
    margin: 20px 0;
    min-height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.elfsight-fallback h4 {
    color: #495057;
    margin: 0 0 10px 0;
    font-size: 1.25rem;
    font-weight: 600;
}

.elfsight-fallback p {
    color: #6c757d;
    margin: 0 0 20px 0;
    font-size: 0.95rem;
    line-height: 1.5;
}

.elfsight-fallback .fallback-icon {
    font-size: 2.5rem;
    color: #adb5bd;
    margin-bottom: 15px;
}

.elfsight-fallback .fallback-links {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.elfsight-fallback .fallback-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: #fff;
    color: #495057;
    text-decoration: none;
    border-radius: 6px;
    border: 1px solid #dee2e6;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.elfsight-fallback .fallback-link:hover {
    background: #007bff;
    color: #fff;
    border-color: #007bff;
    text-decoration: none;
    transform: translateY(-1px);
}

.elfsight-fallback .fallback-link i {
    font-size: 1rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .elfsight-fallback {
        padding: 30px 15px;
        margin: 15px 0;
    }
    
    .elfsight-fallback .fallback-links {
        flex-direction: column;
        align-items: center;
    }
    
    .elfsight-fallback .fallback-link {
        width: 100%;
        max-width: 250px;
        justify-content: center;
    }
}
