/* Custom Post to Text Exporter Styles */

.download-text-wrapper {
    margin: 20px 0;
    text-align: center;
    clear: both;
}

.download-text-button {
    display: inline-flex;
    align-items: center;
    padding: 12px 24px;
    /* Background color will be set dynamically via PHP */
    color: white !important;
    text-decoration: none !important;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.download-text-button:active {
    transform: translateY(0);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Font Awesome icon styling */
.download-text-button .fa-download {
    margin-right: 8px;
    font-size: 16px;
}

/* Fallback Unicode icon for when Font Awesome is not available */
.download-text-button.no-fa-icon::before {
    content: "⬇";
    margin-right: 8px;
    font-size: 16px;
    font-weight: bold;
    display: inline-block;
}

/* Alternative fallback icons to try */
.download-text-button.no-fa-icon.alt-icon::before {
    content: "↓";
}

.download-text-button.no-fa-icon.alt-icon2::before {
    content: "🔽";
    font-size: 14px;
}

/* Ensure no double icons */
.download-text-button.has-fa-icon::before {
    display: none !important;
}

/* Responsive design */
@media (max-width: 768px) {
    .download-text-button {
        font-size: 14px;
        padding: 10px 20px;
    }
    
    .download-text-button .fa-download {
        font-size: 14px;
    }
    
    .download-text-button.no-fa-icon::before {
        font-size: 14px;
    }
}

/* Theme compatibility */
.entry-content .download-text-wrapper,
.post-content .download-text-wrapper,
.content .download-text-wrapper {
    margin: 20px 0;
}

/* Divi theme compatibility */
.et_pb_post .download-text-wrapper {
    margin: 30px 0;
}

/* Ensure Font Awesome loads if available */
.download-text-button i[class*="fa-"] {
    font-family: FontAwesome, "Font Awesome 5 Free", "Font Awesome 5 Pro", sans-serif;
    font-weight: 900;
}