/* Global Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #e94560;
    --background-dark: #1a1a2e;
    --background-light: #16213e;
    --text-light: #f4f6f9;
    --text-dark: #34495e;
    --transition-speed: 0.3s;
    --primary-color: #0048bd;
    --secondary-color: #44a7fd;
    --white: #ffffff;
    --text-color: #333;
    --hover-color: #3f5efb;
}

.text-humanizer-container {
    display: block !important;
    background-color: #f8f9fa;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.tool-title {
    border-bottom: 3px solid var(--secondary-color);
    padding-bottom: 10px;
    margin-bottom: 20px;
}

.text-textarea {
    resize: vertical;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.text-textarea:focus {
    box-shadow: 0 0 10px rgba(233, 69, 96, 0.2);
    border-color: var(--primary-color);
}

.text-count {
    color: #6c757d;
    font-size: 0.8rem;
    text-align: right;
}

.action-buttons {
    background-color: #fff;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
    .text-extender-container {
        padding: 15px;
    }

    .action-buttons {
        flex-direction: column;
        align-items: stretch !important;
    }

    .extend-options,
    .processing-actions {
        margin-bottom: 10px;
        width: 100%;
    }

    .processing-actions {
        display: flex;
        justify-content: space-between;
    }
}



/* FAQ's */

.faq-section {
    background-color: #f8f9fa;
    border-radius: 15px;
    padding: 30px;
    margin-top: 30px;
}

.faq-title {
    color: var(--primary-color);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    border-bottom: 2px solid var(--primary-color);
    padding-bottom: 10px;
}

.faq-title i {
    font-size: 1.5rem;
}

.accordion-button {
    background-color: #fff;
    color: var(--background-light);
    font-weight: 500;
}

.accordion-button:not(.collapsed) {
    background-color: var(--primary-color);
    color: var(--text-light);
}

.accordion-button:focus {
    box-shadow: none;
}

.accordion-body {
    background-color: #f1f3f5;
    color: var(--text-dark);
}

@media (max-width: 768px) {
    .faq-section {
        padding: 20px;
    }

    .faq-title {
        font-size: 1.2rem;
    }
}

:root {
    --primary-color: #007bff;
    --secondary-color: #6c757d;
}

.primary {
    color: var(--primary-color) !important;
}

.primary-bg {
    background-color: var(--primary-color) !important;
}

.secondary {
    color: var(--secondary-color) !important;
}

.secondary-bg {
    background-color: var(--secondary-color) !important;
}