
/* Import Google Font Nunito */
@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@300;400;600;700&display=swap');

/* Global Variables */
:root {
    --primary-color: #005a95; /* Dark Blue */
    --secondary-color: #000000; /* Black */
    --tertiary-color: #31cc32; /* Bright Green */
    --highlight-color: #17a2b7; /* Teal */
    --background-color: #f1f1f1; /* Light Gray */
    --text-color: #333; /* Neutral Text */
    --white: #FFFFFF;
}

/* Global Styles */
body {
    font-family: 'Nunito', sans-serif;
    background-color: var(--background-color);
    color: var(--text-color);
    margin: 0;
    padding: 0;
    line-height: 1.6;
}

/* Header Styles */
header {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

header img {
    height: 50px;
}

header h1 {
    margin: 0;
    font-size: 1.5rem;
}

header a {
    color: var(--highlight-color);
    font-weight: 600;
    text-decoration: none;
}

header a:hover {
    text-decoration: underline;
}



.nav-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 15px;
}

.nav-menu li {
    display: inline;
}

.nav-menu a {
    text-decoration: none;
    color: var(--white);
    font-size: 1rem;
    font-weight: 600;
    padding: 10px 15px;
    border-radius: 5px;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.nav-menu a:hover {
    background-color: var(--highlight-color);
    color: var(--secondary-color);
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
}

.nav-icon {
    width: 25px;
    height: 3px;
    background: var(--text-color);
    display: block;
    margin: 6px auto;
    transition: all 0.3s ease;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
        flex-direction: column;
        background-color: var(--primary-color);
        position: absolute;
        top: 100%;
        right: 0;
        width: 100%;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-toggle {
        display: block;
    }

    .nav-menu a {
        text-align: center;
        padding: 15px;
    }
}





/* Main Content */
main {
    padding: 20px;
    margin: 20px auto;
    max-width: 1200px;
    background-color: var(--white);
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* Section Styles */
section {
    margin-bottom: 30px;
    padding: 20px;
    background-color: var(--white);
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

h2 {
    color: var(--primary-color);
    font-size: 1.8rem;
    margin-bottom: 15px;
    text-align: center;
}

/* Product Description Section */
.product-description-section h2 {
    font-size: 2rem;
    font-weight: bold;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.product-description-section ul {
    list-style-type: disc;
    padding-left: 20px;
    margin-bottom: 20px;
}

.product-description-section ul li {
    margin-bottom: 10px;
    font-size: 1rem;
    color: var(--text-color);
}

/* Table Styles */
.table {
    width: 100%;
    border-collapse: collapse;
    background-color: var(--white);
    border-radius: 8px;
    overflow: hidden;
    margin-top: 20px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.table thead {
    background-color: var(--primary-color);
    color: var(--white);
}

.table th, .table td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid var(--secondary-color);
}

.table tr:nth-child(even) {
    background-color: var(--background-color);
}

.table tr:hover {
    background-color: var(--highlight-color);
    color: var(--white);
    transition: background-color 0.3s ease;
}

/* Button Styles */
.btn {
    display: inline-block;
    padding: 10px 20px;
    font-size: 1rem;
    color: var(--white);
    background-color: var(--primary-color);
    border: none;
    border-radius: 5px;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn:hover {
    background-color: var(--highlight-color);
    transform: scale(1.05);
}

.btn-secondary {
    background-color: var(--tertiary-color);
    color: var(--white);
}

.btn-secondary:hover {
    background-color: var(--highlight-color);
}

/* Footer Styles */
footer {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 20px 0;
    text-align: center;
    margin-top: 30px;
    position: relative;
}

footer p {
    margin: 5px 0;
}

footer a {
    color: var(--highlight-color);
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}

.production-entgema-logo {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: var(--background-color);
    border: 2px solid var(--highlight-color);
    border-radius: 50%;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    width: 160px;
    height: 160px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 10px;
    box-sizing: border-box;
    z-index: 1000;
    opacity: 0.8;
    font-weight: bold;
}

.production-entgema-logo p {
    font-size: 0.8rem;
    color: var(--text-color);
    margin: 0;
    text-align: center;
}

.production-entgema-logo img {
    width: 60px;
    height: auto;
    margin-top: 10px;
}

.production-entgema-logo a {
    display: inline-block;
    text-decoration: none;
    font-weight: bold;
}

.production-entgema-logo a:hover img {
    transform: scale(1.1);
    transition: transform 0.3s ease;
}

@media (max-width: 768px) {
    .production-entgema-logo {
        width: 120px;
        height: 120px;
        padding: 8px;
    }

    .production-entgema-logo p {
        font-size: 0.75rem;
    }

    .production-entgema-logo img {
        width: 50px;
    }
}

.comparison-table-wrapper {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin: 0;
    padding: 0;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    background-color: var(--white);
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    text-align: left;
    margin: 0;
}

.comparison-table thead {
    background-color: var(--primary-color); /* Primary dark blue for header */
    color: var(--white); /* White text for better contrast */
}

.comparison-table th, .comparison-table td {
    padding: 12px; /* Maintain readability with larger padding */
    border-bottom: 1px solid var(--secondary-color); /* Black divider */
}

.comparison-table th {
    font-size: 1rem;
    font-weight: bold;
    text-align: left;
}

.comparison-table td {
    font-size: 0.95rem;
    color: var(--text-color); /* Neutral dark text for readability */
}

.comparison-table tr:nth-child(even) {
    background-color: var(--background-color); /* Light gray for alternating rows */
}

.comparison-table tr:nth-child(odd) {
    background-color: var(--white); /* White for alternating rows */
}

.comparison-table tr:hover {
    background-color: var(--highlight-color); /* Teal hover for contrast and visual feedback */
    color: var(--white); /* White text on hover */
    transition: background-color 0.3s ease, color 0.3s ease;
}

.comparison-table td strong {
    font-size: 1rem;
    font-weight: bold;
    color: var(--primary-color); /* Highlight strong text with primary color */
}

.comparison-table td p {
    margin: 0;
    font-size: 0.9rem;
    color: #666666; /* Medium gray for supporting text */
}




.product-description-section {
    background-color: #f9f9f9;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    margin: 20px 0;
}

.product-description-section h2 {
    color: #005a95;
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.product-description-section p {
    line-height: 1.6;
    font-size: 1rem;
    color: #333;
    margin-bottom: 20px;
}

.product-description-section h3 {
    color: #17a2b8;
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.product-description-section ul {
    list-style: disc;
    padding-left: 20px;
    margin-bottom: 20px;
}

.product-description-section ul li {
    margin-bottom: 8px;
    font-size: 1rem;
    color: #555;
}

.btn-secondary {
    display: inline-block;
    padding: 10px 20px;
    font-size: 1rem;
    color: #fff;
    background-color: #17a2b8;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.btn-secondary:hover {
    background-color: #128496;
    transform: scale(1.05);
}



.hero {
    padding: 20px;
    background-color: #f9f9f9;
    text-align: center;
}

.hero h1 {
    font-size: 2rem;
    color: #005a95;
    margin-bottom: 15px;
}

.hero .lead {
    font-size: 1.2rem;
    color: #333;
    margin-bottom: 20px;
}

.cta-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}

.cta-buttons .btn {
    padding: 10px 15px;
    font-size: 1rem;
    text-decoration: none;
    border-radius: 5px;
    color: #fff;
}

.cta-buttons .btn-primary {
    background-color: #005a95;
}

.cta-buttons .btn-primary:hover {
    background-color: #004a82;
}

.cta-buttons .btn-secondary {
    background-color: #17a2b8;
}

.cta-buttons .btn-secondary:hover {
    background-color: #128496;
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 1.5rem;
    }

    .hero .lead {
        font-size: 1rem;
    }

    .cta-buttons .btn {
        font-size: 0.9rem;
        padding: 8px 12px;
    }
}


.comparison-section {
    background-color: #f9f9f9;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    margin: 20px 0;
}

.comparison-section h2 {
    color: #005a95;
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.comparison-table-wrapper {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin-top: 15px;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
    font-size: 1rem;
    margin-bottom: 20px;
}

.comparison-table th, .comparison-table td {
    padding: 10px;
    border: 1px solid #ccc;
}

.comparison-table th {
    background-color: #005a95;
    color: #fff;
}

.comparison-table tr:nth-child(even) {
    background-color: #f2f2f2;
}

.comparison-table tr:hover {
    background-color: #007a9c;
    color: #fff;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.comparison-table td p {
    margin: 0;
    font-size: 0.9rem;
    color: #333;
}





.rech-reader-body {
    font-family: 'Nunito', sans-serif;
    background-color: var(--background-color);
    color: var(--text-color);
    margin: 0;
    padding: 0;
    line-height: 1.6;
}

.rech-reader-h1, .rech-reader-h2 {
    color: var(--primary-color);
    margin-bottom: 0.5em;
}

.rech-reader-h1 {
    font-size: 2rem;
    margin-top: 0;
}

.rech-reader-description, .rech-reader-section, .rech-reader-details {
    background: var(--white);
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 8px;
    border: 1px solid var(--secondary-light);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.rech-reader-drop-zone {
    border: 2px dashed var(--highlight-light);
    border-radius: 8px;
    padding: 40px;
    text-align: center;
    color: var(--text-color);
    background: var(--white);
    margin-bottom: 20px;
    transition: border-color 0.3s, background-color 0.3s;
    cursor: pointer;
    position: relative;
}

.rech-reader-drop-zone.dragover {
    border-color: var(--highlight-color);
    background-color: var(--highlight-light);
}

.rech-reader-drop-zone p {
    margin: 0;
    font-size: 1.1em;
}

.rech-reader-hidden {
    display: none;
}

.rech-reader-table {
    border-collapse: collapse;
    width: 100%;
    margin-bottom: 20px;
    background: var(--white);
}

.rech-reader-table th, .rech-reader-table td {
    border: 1px solid var(--secondary-light);
    padding: 8px;
    vertical-align: top;
}

.rech-reader-table th {
    background: var(--background-color);
    text-align: left;
}

.rech-reader-error {
    color: var(--tertiary-dark);
    background-color: #ffe6e6;
    padding: 10px;
    border-radius: 5px;
}

.rech-reader-download-buttons {
    margin-bottom: 20px;
    text-align: center;
}

.rech-reader-download-buttons button {
    margin: 5px;
    padding: 10px 20px;
    font-size: 1em;
    cursor: pointer;
    border: none;
    border-radius: 8px;
    background-color: var(--primary-color);
    color: var(--white);
    transition: background-color 0.3s, transform 0.2s;
}

.rech-reader-download-buttons button:hover {
    background-color: var(--primary-dark);
    transform: scale(1.05);
}

.rech-reader-details summary {
    cursor: pointer;
    font-weight: bold;
}

.rech-reader-pre {
    white-space: pre-wrap;
    word-wrap: break-word;
    max-height: 400px;
    overflow: auto;
    background-color: var(--background-color);
    padding: 10px;
    border-radius: 8px;
    border: 1px solid var(--secondary-light);
}

@media (max-width: 768px) {
    .rech-reader-table th, .rech-reader-table td {
        font-size: 0.9em;
    }

    .rech-reader-drop-zone {
        padding: 20px;
    }

    .rech-reader-download-buttons button {
        width: 100%;
        margin: 10px 0;
    }
}
