/**
 * LLMs.txt Pro Frontend Styles - Conflict Safe Version
 * Namespace: llms-txt-pro-*-unique
 */

/* Reset and base styles for our components only */
.llms-txt-pro-generator-container-unique,
.llms-txt-pro-validator-standalone-unique {
    box-sizing: border-box;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #2d3748;
    max-width: 800px;
    margin: 2rem auto;
    position: relative;
    z-index: 1;
}

.llms-txt-pro-generator-container-unique *,
.llms-txt-pro-validator-standalone-unique * {
    box-sizing: border-box;
}

/* Header Styles */
.llms-txt-pro-generator-container-unique .llms-txt-pro-tool-header {
    text-align: center;
    margin-bottom: 2rem;
    padding: 2rem;
    background: linear-gradient(238deg, #667eea 0%, #0e9955 100%);
    color: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(102, 126, 234, 0.3);
}

.llms-txt-pro-tool-header h2 {
    color: white !important;
}

.llms-txt-pro-generator-container-unique .llms-txt-pro-tool-header h2,
.llms-txt-pro-validator-standalone-unique .validator-header h2 {
    margin: 0 0 0.5rem 0;
    font-size: 2.2rem;
    font-weight: 700;
    line-height: 1.2;
}

.validator-header h3 {
    
    color: white !important;
}


.llms-txt-pro-generator-container-unique .llms-txt-pro-tool-header p,
.llms-txt-pro-validator-standalone-unique .validator-header p {
    margin: 0;
    font-size: 1.1rem;
    opacity: 0.9;
}

/* Validator Header */
.llms-txt-pro-validator-standalone-unique .validator-header {
    text-align: center;
    margin-bottom: 2rem;
    padding: 2rem;
    background: linear-gradient(135deg, #48bb78 0%, #38a169 100%);
    color: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(72, 187, 120, 0.3);
}

/* Card/Section Styles */
.llms-txt-pro-generator-container-unique .llms-txt-pro-input-section,
.llms-txt-pro-generator-container-unique .progress-section,
.llms-txt-pro-generator-container-unique .results-section,
.llms-txt-pro-generator-container-unique .llms-txt-pro-validator-section,
.llms-txt-pro-validator-standalone-unique .validator-input {
    background: #ffffff;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.07);
    margin-bottom: 2rem;
    border: 1px solid #e2e8f0;
    position: relative;
}

/* Input Groups */
.llms-txt-pro-generator-container-unique .url-input-group label,
.llms-txt-pro-validator-standalone-unique .validator-input label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #FFFFFF;
    font-size: 1rem;
}

.llms-txt-pro-generator-container-unique .input-with-button {
    display: flex;
    gap: 10px;
    margin-bottom: 1rem;
    align-items: stretch;
}

.llms-txt-pro-generator-container-unique .llms-url-input {
    flex: 1;
    padding: 0.75rem 1rem;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #ffffff;
}

.llms-url-input {
color: white !important;
}

.llms-txt-pro-generator-container-unique .llms-url-input:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.llms-txt-pro-generator-container-unique .llms-url-input.invalid-unique {
    border-color: #e53e3e;
    box-shadow: 0 0 0 3px rgba(229, 62, 62, 0.1);
}

/* Button Styles */
.llms-txt-pro-generator-container-unique .llms-generate-btn-pro,
.llms-txt-pro-generator-container-unique .validate-btn,
.llms-txt-pro-validator-standalone-unique .validate-btn {
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    min-width: 120px;
    font-size: 1rem;
}

.llms-txt-pro-generator-container-unique .llms-generate-btn-pro:hover,
.llms-txt-pro-generator-container-unique .validate-btn:hover,
.llms-txt-pro-validator-standalone-unique .validate-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
}

.llms-txt-pro-generator-container-unique .llms-generate-btn-pro:disabled,
.llms-txt-pro-generator-container-unique .validate-btn:disabled,
.llms-txt-pro-validator-standalone-unique .validate-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.llms-txt-pro-generator-container-unique .llms-generate-btn-pro.loading-unique,
.llms-txt-pro-generator-container-unique .validate-btn.loading-unique,
.llms-txt-pro-validator-standalone-unique .validate-btn.loading-unique {
    opacity: 0.8;
    pointer-events: none;
}

/* Validator specific button styles */
.llms-txt-pro-validator-standalone-unique .validate-btn {
    background: linear-gradient(135deg, #48bb78 0%, #38a169 100%);
}

.llms-txt-pro-validator-standalone-unique .validate-btn:hover {
    box-shadow: 0 8px 25px rgba(72, 187, 120, 0.3);
}

/* Secondary buttons */
.llms-txt-pro-generator-container-unique .clear-btn,
.llms-txt-pro-validator-standalone-unique .clear-btn {
    background: #fed7d7;
    color: #c53030;
    border: 2px solid #fed7d7;
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.llms-txt-pro-generator-container-unique .clear-btn:hover,
.llms-txt-pro-validator-standalone-unique .clear-btn:hover {
    background: #c53030;
    color: white;
    border-color: #c53030;
}

.llms-txt-pro-generator-container-unique .example-btn,
.llms-txt-pro-validator-standalone-unique .example-btn {
    background: #bee3f8;
    color: #2b6cb0;
    border: 2px solid #bee3f8;
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.llms-txt-pro-generator-container-unique .example-btn:hover,
.llms-txt-pro-validator-standalone-unique .example-btn:hover {
    background: #2b6cb0;
    color: white;
    border-color: #2b6cb0;
}

/* Spinner animation */
.llms-txt-pro-generator-container-unique .btn-loader {
    animation: spin-unique 1s linear infinite;
}

@keyframes spin-unique {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Generation Options */
.llms-txt-pro-generator-container-unique .generation-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background: #f7fafc;
    border-radius: 8px;
    margin-top: 1rem;
    border: 1px solid #e2e8f0;
}

.llms-txt-pro-generator-container-unique .generation-options label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin: 0;
    font-weight: normal;
    cursor: pointer;
}

.llms-txt-pro-generator-container-unique .page-limit-info {
    font-size: 0.9rem;
    color: #718096;
    font-weight: 500;
}

/* Progress Section */
.llms-txt-pro-generator-container-unique .progress-bar {
    width: 100%;
    height: 24px;
    background: #e2e8f0;
    border-radius: 12px;
    overflow: hidden;
    margin: 1rem 0;
    position: relative;
}

.llms-txt-pro-generator-container-unique .progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
    width: 0%;
    transition: width 0.3s ease;
    border-radius: 12px;
    position: relative;
}

.llms-txt-pro-generator-container-unique .progress-fill::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    animation: shimmer-unique 2s infinite;
}

@keyframes shimmer-unique {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.llms-txt-pro-generator-container-unique .progress-text {
    text-align: center;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.llms-txt-pro-generator-container-unique .processed-urls {
    font-size: 0.9rem;
    color: #718096;
    max-height: 150px;
    overflow-y: auto;
    background: #f7fafc;
    padding: 1rem;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
    line-height: 1.5;
}

/* Results Section */
.llms-txt-pro-generator-container-unique .results-section {
    overflow: hidden;
}

.llms-txt-pro-generator-container-unique .results-tabs {
    display: flex;
    background: #f7fafc;
    border-bottom: 1px solid #e2e8f0;
    margin: -2rem -2rem 2rem -2rem;
}

.llms-txt-pro-generator-container-unique .tab-btn {
    flex: 1;
    padding: 1rem;
    border: none;
    background: transparent;
    cursor: pointer;
    font-weight: 600;
    color: #718096;
    transition: all 0.3s ease;
    position: relative;
    font-size: 1rem;
}

.llms-txt-pro-generator-container-unique .tab-btn.active {
    color: #667eea;
    background: #ffffff;
}

.llms-txt-pro-generator-container-unique .tab-btn.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
}

.llms-txt-pro-generator-container-unique .tab-btn:hover {
    background: #f1f5f9;
}

.llms-txt-pro-generator-container-unique .tab-content {
    padding: 0;
}

.llms-txt-pro-generator-container-unique .tab-pane {
    display: none;
}

.llms-txt-pro-generator-container-unique .tab-pane.active {
    display: block;
}

.llms-txt-pro-generator-container-unique .file-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.llms-txt-pro-generator-container-unique .file-header h3 {
    margin: 0;
    color: #ffffff !important;
    font-size: 1.2rem;
}

.llms-txt-pro-generator-container-unique .file-actions {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.llms-txt-pro-generator-container-unique .copy-btn,
.llms-txt-pro-generator-container-unique .download-btn {
    padding: 0.5rem 1rem;
    border: 2px solid #e2e8f0;
    background: #ffffff;
    color:black !important;
    border-radius: 6px;
    cursor: pointer;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    font-weight: 500;
}

.llms-txt-pro-generator-container-unique .copy-btn:hover,
.llms-txt-pro-generator-container-unique .download-btn:hover {
    border-color: #667eea;
    background: #667eea;
    color: white;
    transform: translateY(-1px);
}

.llms-txt-pro-generator-container-unique .copy-btn.copy-success-unique {
    background: #48bb78 !important;
    color: white !important;
    border-color: #48bb78 !important;
    transform: scale(1.05);
}

/* Textarea Styles */
.llms-txt-pro-validator-standalone-unique textarea {
    width: 100%;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    padding: 1rem;
    font-family: 'SFMono-Regular', 'Menlo', 'Monaco', 'Consolas', 'Liberation Mono', 'Courier New', monospace;
    font-size: 0.9rem;
    line-height: 1.5;
    background: #f7fafc;
    resize: vertical;
    transition: border-color 0.3s ease;
    min-height: 150px;
}

.llms-txt-pro-generator-container-unique textarea:focus,
.llms-txt-pro-validator-standalone-unique textarea:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.llms-txt-pro-generator-container-unique .file-stats-unique,
.llms-txt-pro-validator-standalone-unique .file-stats-unique {
    display: flex;
    justify-content: space-between;
    margin-top: 0.5rem;
    font-size: 0.8rem;
    color: #718096;
    padding: 0.5rem 0;
}

/* Validator Specific Styles */
.llms-txt-pro-generator-container-unique .validator-actions,
.llms-txt-pro-validator-standalone-unique .validator-actions {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.llms-txt-pro-generator-container-unique .validation-results,
.llms-txt-pro-validator-standalone-unique .validation-results {
    margin-top: 2rem;
    padding: 1.5rem;
    border-radius: 8px;
    border: 2px solid #e2e8f0;
}

.llms-txt-pro-generator-container-unique .validation-success-unique,
.llms-txt-pro-validator-standalone-unique .validation-success-unique {
    background: #f0fff4;
    border-color: #48bb78;
    color: #22543d;
}

.llms-txt-pro-generator-container-unique .validation-error-unique,
.llms-txt-pro-validator-standalone-unique .validation-error-unique {
    background: #fed7d7;
    border-color: #e53e3e;
    color: #742a2a;
}

.llms-txt-pro-generator-container-unique .validation-warning-unique,
.llms-txt-pro-validator-standalone-unique .validation-warning-unique {
    background: #fefcbf;
    border-color: #d69e2e;
    color: #744210;
}

.llms-txt-pro-generator-container-unique .validation-results h4,
.llms-txt-pro-validator-standalone-unique .validation-results h4 {
    margin: 0 0 1rem 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.1rem;
}

.llms-txt-pro-generator-container-unique .validation-errors-unique,
.llms-txt-pro-validator-standalone-unique .validation-errors-unique {
    margin: 1rem 0;
    padding-left: 1.5rem;
    list-style: none;
}

.llms-txt-pro-generator-container-unique .validation-errors-unique li,
.llms-txt-pro-validator-standalone-unique .validation-errors-unique li {
    margin-bottom: 0.5rem;
    position: relative;
}

.llms-txt-pro-generator-container-unique .validation-checklist-unique,
.llms-txt-pro-generator-container-unique .validation-tips-unique,
.llms-txt-pro-validator-standalone-unique .validation-checklist-unique,
.llms-txt-pro-validator-standalone-unique .validation-tips-unique {
    margin-top: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 6px;
}

.llms-txt-pro-generator-container-unique .validation-checklist-unique ul,
.llms-txt-pro-generator-container-unique .validation-tips-unique ul,
.llms-txt-pro-validator-standalone-unique .validation-checklist-unique ul,
.llms-txt-pro-validator-standalone-unique .validation-tips-unique ul {
    margin: 0.5rem 0 0 0;
    padding-left: 1rem;
    list-style: none;
}

.llms-txt-pro-generator-container-unique .validation-checklist-unique li,
.llms-txt-pro-generator-container-unique .validation-tips-unique li,
.llms-txt-pro-validator-standalone-unique .validation-checklist-unique li,
.llms-txt-pro-validator-standalone-unique .validation-tips-unique li {
    margin-bottom: 0.25rem;
}

/* Info Section */
.llms-txt-pro-generator-container-unique .llms-txt-pro-info-section {
    margin-top: 3rem;
}

.llms-txt-pro-generator-container-unique .info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.llms-txt-pro-generator-container-unique .info-card {
    background: #ffffff;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.07);
    border: 1px solid #e2e8f0;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.llms-txt-pro-generator-container-unique .info-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.llms-txt-pro-generator-container-unique .info-card h4 {
    color: #2d3748;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.llms-txt-pro-generator-container-unique .info-card p {
    color: #718096;
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Message Styles */
.llms-txt-pro-generator-container-unique .success-message-unique,
.llms-txt-pro-validator-standalone-unique .success-message-unique {
    background: #f0fff4;
    color: #22543d;
    padding: 1rem;
    border-radius: 8px;
    border: 2px solid #48bb78;
    margin: 1rem 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    animation: slideIn-unique 0.3s ease-out;
}

.llms-txt-pro-generator-container-unique .error-message-unique,
.llms-txt-pro-validator-standalone-unique .error-message-unique {
    background: #fed7d7;
    color: #742a2a;
    padding: 1rem;
    border-radius: 8px;
    border: 2px solid #e53e3e;
    margin: 1rem 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    animation: slideIn-unique 0.3s ease-out;
}

.llms-txt-pro-generator-container-unique .warning-message-unique,
.llms-txt-pro-validator-standalone-unique .warning-message-unique {
    background: #fefcbf;
    color: #744210;
    padding: 1rem;
    border-radius: 8px;
    border: 2px solid #d69e2e;
    margin: 1rem 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    animation: slideIn-unique 0.3s ease-out;
}

/* Error Styles */
.llms-txt-pro-generator-container-unique .url-error-unique {
    color: #e53e3e;
    font-size: 0.9rem;
    margin-top: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Notice Styles */
.llms-txt-pro-generator-container-unique .llms-notice,
.llms-txt-pro-validator-standalone-unique .llms-notice {
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1rem;
    border: 1px solid #e2e8f0;
}

.llms-notice-info {
    display: none;
}




.llms-txt-pro-generator-container-unique .llms-notice-info,
.llms-txt-pro-validator-standalone-unique .llms-notice-info {
    background: #d1ecf1;
    border-color: #bee5eb;
    color: #0c5460;
}

.llms-txt-pro-generator-container-unique .llms-notice-warning,
.llms-txt-pro-validator-standalone-unique .llms-notice-warning {
    background: #fff3cd;
    border-color: #ffeaa7;
    color: #744210;
}

/* Loading States */
.llms-txt-pro-generator-container-unique .loading-unique,
.llms-txt-pro-validator-standalone-unique .loading-unique {
    position: relative;
    pointer-events: none;
}

.llms-txt-pro-generator-container-unique .loading-unique::after,
.llms-txt-pro-validator-standalone-unique .loading-unique::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    margin: -10px 0 0 -10px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top-color: #ffffff;
    border-radius: 50%;
    animation: spin-unique 1s linear infinite;
    z-index: 10;
}

/* Animations */
.llms-txt-pro-generator-container-unique .fade-in-unique,
.llms-txt-pro-validator-standalone-unique .fade-in-unique {
    animation: fadeIn-unique 0.5s ease-in;
}

@keyframes fadeIn-unique {
    from { 
        opacity: 0; 
        transform: translateY(20px); 
    }
    to { 
        opacity: 1; 
        transform: translateY(0); 
    }
}

@keyframes slideIn-unique {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.llms-txt-pro-generator-container-unique .pulse-unique,
.llms-txt-pro-validator-standalone-unique .pulse-unique {
    animation: pulse-unique 2s infinite;
}

@keyframes pulse-unique {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

/* Focus States for Accessibility */
.llms-txt-pro-generator-container-unique .llms-generate-btn-pro:focus,
.llms-txt-pro-generator-container-unique .copy-btn:focus,
.llms-txt-pro-generator-container-unique .download-btn:focus,
.llms-txt-pro-generator-container-unique .validate-btn:focus,
.llms-txt-pro-generator-container-unique .clear-btn:focus,
.llms-txt-pro-generator-container-unique .example-btn:focus,
.llms-txt-pro-generator-container-unique .tab-btn:focus,
.llms-txt-pro-validator-standalone-unique .validate-btn:focus,
.llms-txt-pro-validator-standalone-unique .clear-btn:focus,
.llms-txt-pro-validator-standalone-unique .example-btn:focus {
    outline: 2px solid #667eea;
    outline-offset: 2px;
}

/* Style Variants */
.llms-txt-pro-generator-container-unique[data-style="compact"] .llms-txt-pro-tool-header {
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

.llms-txt-pro-generator-container-unique[data-style="compact"] .llms-txt-pro-tool-header h2 {
    font-size: 1.8rem;
}

.llms-txt-pro-generator-container-unique[data-style="compact"] .llms-txt-pro-input-section,
.llms-txt-pro-generator-container-unique[data-style="compact"] .progress-section,
.llms-txt-pro-generator-container-unique[data-style="compact"] .results-section {
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

.llms-txt-pro-generator-container-unique[data-style="minimal"] {
    box-shadow: none;
}

.llms-txt-pro-generator-container-unique[data-style="minimal"] .llms-txt-pro-tool-header {
    background: none;
    color: #2d3748;
    padding: 1rem 0;
    box-shadow: none;
}

.llms-txt-pro-generator-container-unique[data-style="minimal"] .llms-txt-pro-input-section,
.llms-txt-pro-generator-container-unique[data-style="minimal"] .progress-section,
.llms-txt-pro-generator-container-unique[data-style="minimal"] .results-section {
    box-shadow: none;
    border: 1px solid #e2e8f0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .llms-txt-pro-generator-container-unique,
    .llms-txt-pro-validator-standalone-unique {
        margin: 1rem;
        max-width: none;
    }
    
    .llms-txt-pro-generator-container-unique .llms-txt-pro-tool-header,
    .llms-txt-pro-validator-standalone-unique .validator-header {
        padding: 1.5rem;
    }
    
    .llms-txt-pro-generator-container-unique .llms-txt-pro-tool-header h2,
    .llms-txt-pro-validator-standalone-unique .validator-header h2 {
        font-size: 1.8rem;
    }
    
    .llms-txt-pro-generator-container-unique .input-with-button {
        flex-direction: column;
    }
    
    .llms-txt-pro-generator-container-unique .llms-url-input,
    .llms-txt-pro-generator-container-unique .llms-generate-btn-pro {
        width: 100%;
    }
    
    .llms-txt-pro-generator-container-unique .generation-options {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
    }
    
    .llms-txt-pro-generator-container-unique .results-tabs {
        flex-direction: column;
    }
    
    .llms-txt-pro-generator-container-unique .file-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .llms-txt-pro-generator-container-unique .file-actions {
        width: 100%;
        justify-content: center;
    }
    
    .llms-txt-pro-generator-container-unique .validator-actions,
    .llms-txt-pro-validator-standalone-unique .validator-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .llms-txt-pro-generator-container-unique .validator-actions .validate-btn,
    .llms-txt-pro-generator-container-unique .validator-actions .clear-btn,
    .llms-txt-pro-generator-container-unique .validator-actions .example-btn,
    .llms-txt-pro-validator-standalone-unique .validator-actions .validate-btn,
    .llms-txt-pro-validator-standalone-unique .validator-actions .clear-btn,
    .llms-txt-pro-validator-standalone-unique .validator-actions .example-btn {
        width: 100%;
        max-width: 250px;
    }
    
    .llms-txt-pro-generator-container-unique .info-grid {
        grid-template-columns: 1fr;
    }
    
    .llms-txt-pro-generator-container-unique .file-stats-unique,
    .llms-txt-pro-validator-standalone-unique .file-stats-unique {
        flex-direction: column;
        gap: 0.25rem;
    }
}

@media (max-width: 480px) {
    .llms-txt-pro-generator-container-unique .llms-txt-pro-input-section,
    .llms-txt-pro-generator-container-unique .progress-section,
    .llms-txt-pro-generator-container-unique .results-section,
    .llms-txt-pro-generator-container-unique .llms-txt-pro-validator-section,
    .llms-txt-pro-validator-standalone-unique .validator-input {
        padding: 1rem;
    }
    
    .llms-txt-pro-generator-container-unique .results-tabs {
        margin: -1rem -1rem 1rem -1rem;
    }
    
    .llms-txt-pro-generator-container-unique .tab-btn {
        padding: 0.75rem 0.5rem;
        font-size: 0.9rem;
    }
}

/* High Contrast Mode Support */
@media (prefers-contrast: high) {
    .llms-txt-pro-generator-container-unique .llms-txt-pro-tool-header,
    .llms-txt-pro-validator-standalone-unique .validator-header {
        background: #000000;
        color: #ffffff;
    }
    
    .llms-txt-pro-generator-container-unique .llms-generate-btn-pro,
    .llms-txt-pro-generator-container-unique .validate-btn,
    .llms-txt-pro-validator-standalone-unique .validate-btn {
        background: #000000;
        border: 2px solid #ffffff;
    }
    
    .llms-txt-pro-generator-container-unique .tab-btn.active {
        background: #000000;
        color: #ffffff;
    }
}

/* Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {
    .llms-txt-pro-generator-container-unique *,
    .llms-txt-pro-validator-standalone-unique * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    .llms-txt-pro-generator-container-unique .btn-loader {
        animation: none;
    }
    
    .llms-txt-pro-generator-container-unique .pulse-unique,
    .llms-txt-pro-validator-standalone-unique .pulse-unique {
        animation: none;
    }
    
    .llms-txt-pro-generator-container-unique .progress-fill::after {
        animation: none;
    }
}

/* Print Styles */
@media print {
    .llms-txt-pro-generator-container-unique,
    .llms-txt-pro-validator-standalone-unique {
        box-shadow: none;
        max-width: none;
        margin: 0;
    }
    
    .llms-txt-pro-generator-container-unique .llms-generate-btn-pro,
    .llms-txt-pro-generator-container-unique .copy-btn,
    .llms-txt-pro-generator-container-unique .download-btn,
    .llms-txt-pro-generator-container-unique .validate-btn,
    .llms-txt-pro-generator-container-unique .clear-btn,
    .llms-txt-pro-generator-container-unique .example-btn,
    .llms-txt-pro-validator-standalone-unique .validate-btn,
    .llms-txt-pro-validator-standalone-unique .clear-btn,
    .llms-txt-pro-validator-standalone-unique .example-btn {
        display: none;
    }
    
    .llms-txt-pro-generator-container-unique .progress-section {
        display: none;
    }
}

/* Dark Mode Support (if parent theme supports it) */
@media (prefers-color-scheme: dark) {
    .llms-txt-pro-generator-container-unique,
    .llms-txt-pro-validator-standalone-unique {
        color: #e2e8f0;
    }
    
    .llms-txt-pro-generator-container-unique .llms-txt-pro-input-section,
    .llms-txt-pro-generator-container-unique .progress-section,
    .llms-txt-pro-generator-container-unique .results-section,
    .llms-txt-pro-generator-container-unique .llms-txt-pro-validator-section,
    .llms-txt-pro-validator-standalone-unique .validator-input,
    .llms-txt-pro-generator-container-unique .info-card {
        background: #000000;
        border-color: #4a5568;
    }
    
    .llms-txt-pro-generator-container-unique .llms-url-input,
    .llms-txt-pro-generator-container-unique textarea,
    .llms-txt-pro-validator-standalone-unique textarea {
        background: #1a202c;
        border-color: #4a5568;
        color: #e2e8f0;
       
           }
    
        .llms-txt-pro-generator-container-unique textarea {
          height: auto !important;
          min-height: 150px !important;
          max-height: 500 !important;
          overflow: auto !important; 
        }
        
     
    
    .llms-txt-pro-generator-container-unique .generation-options,
    .llms-txt-pro-generator-container-unique .processed-urls {
        background: #1a202c;
        border-color: #4a5568;
    }
    
    .llms-txt-pro-generator-container-unique .results-tabs {
        background: #1a202c;
        border-color: #4a5568;
    }
}

/* Wide variant via data-style */
.llms-txt-pro-generator-container-unique[data-style="wide"],
.llms-txt-pro-validator-standalone-unique[data-style="wide"] {
  max-width: none;
  width: 100%;
  margin-left: 0;
  margin-right: 0;
}
.llms-txt-pro-generator-container-unique[data-style="wide"] .results-tabs {
  margin: 0;
}