/* FAQly Tools - Export Page Styles */

.faqly-export-options h3 {
    margin-bottom: 20px;
    color: #23282d;
    font-size: 16px;
    font-weight: 600;
}

.faqly-export-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.faqly-export-form.loading {
    position: relative;
}

.faqly-export-form.loading::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.8);
    z-index: 10;
    pointer-events: none;
}

.faqly-export-form.loading .form-check {
    pointer-events: none;
    opacity: 0.6;
}

.dashicons.spin {
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Form styling */
.form-check-label {
    cursor: pointer;
    line-height: 1.4;
}

.form-check-label strong {
    display: block;
    margin-bottom: 5px;
    font-size: 16px;
    color: #23282d;
}

.form-check-label small {
    color: #666;
    font-size: 14px;
}

/* Card styling */
.card {
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.card-title {
    color: #23282d;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
}

.card-text {
    color: #666;
    margin-bottom: 20px;
}

/* Button styling */
.btn-primary {
    background-color: #007cba;
    border-color: #007cba;
    padding: 8px 16px;
    font-size: 14px;
    font-weight: 500;
}

.btn-primary:hover {
    background-color: #005a87;
    border-color: #005a87;
}

.btn-primary:focus {
    box-shadow: 0 0 0 0.2rem rgba(0, 124, 186, 0.25);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .row {
        margin-left: 0;
        margin-right: 0;
    }

    .col-md-6 {
        padding-left: 0;
        padding-right: 0;
        margin-bottom: 15px;
    }

    .form-check {
        padding: 15px;
        border: 1px solid #e1e1e1;
        border-radius: 6px;
        background: #f8f9fa;
    }
}



.card {
	max-width : 100%;
}
