body {
    font-family: 'Roboto', sans-serif;
    background-color: #f0f2f5;
    color: #333;
    padding: 20px;
}

.changelog-container {
    max-width: 4000px;
    margin: 0 auto;
    background: #ffffff;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    padding: 30px;
    margin-bottom: 20px; /* Adjust this value to reduce space below the changelog */
}

h1 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 2.5em;
    color: #1a73e8;
}

.version {
    margin-bottom: 20px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
    background: #fafafa;
    transition: all 0.3s ease;
}

.version:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.version-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    background: #1a73e8;
    color: #ffffff;
    cursor: pointer;
    font-size: 1.4em;
}

.version-content {
    max-height: 500px;
    overflow: hidden;
    transition: max-height 0.4s ease;
    padding: 0 15px;
    background: #ffffff;
    padding-bottom: 15px; /* Adjust this value if needed */
    display: none;
}
.version.open > .version-content{
    display: block;
}
.version-content p {
    margin: 15px 0;
    line-height: 1.6;
}

.date {
    color: #e0e0e0;
    font-size: 0.9em;
}

.arrow {
    transition: transform 0.4s;
    cursor: pointer;
}

.version.open .arrow {
    transform: rotate(90deg);
}

@media (max-width: 768px) {
    body {
        padding: 10px;
    }

    .changelog-container {
        padding: 20px;
    }

    h1 {
        font-size: 2em;
    }

    .version-title {
        font-size: 1.2em;
        padding: 10px;
    }

    .version-content {
        padding: 0 10px;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 1.8em;
    }

    .version-title {
        font-size: 1em;
        padding: 8px;
    }

    .version-content {
        padding: 0 8px;
    }
}

.header-logo {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 150px; /* Adjust height as needed */
}

.header-logo img {
    width: 100px; /* or any other fixed width */
    height: auto;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%; /* Ensure the container spans the full width */
}

.header-container h1 {
    margin: 0; /* Remove default margin to align text properly */
    flex-grow: 1; /* Allows the heading to take up any extra space */
    text-align: center; /* Center the heading text */
}

.logo {
    width: 100px; /* Adjust the logo size as needed */
    height: auto;
}

.responsive-logo {
    width: 5vw; /* Adjusts the width to 5% of the viewport width for a smaller size */
    height: auto;
    padding-bottom: 2vw; /* Adds padding relative to the viewport width */
}

.responsive-title {
    padding-bottom: 2vw; /* Adds padding relative to the viewport width */
    font-size: 3vw; /* Adjusts the font size to be responsive */
}

@media (max-width: 600px) {
    .responsive-logo {
        width: 10vw; /* Adjusts the width for smaller screens */
    }

    .responsive-title {
        font-size: 5vw; /* Adjusts the font size for smaller screens */
    }
}

.tabs {
    display: flex;
    justify-content: center;
    margin-bottom: 20px; /* Add space between tabs and changelog */
}

.tab-button {
    padding: 10px 20px;
    margin: 0 5px;
    border: none;
    background-color: #e0e0e0; /* Default color for inactive buttons */
    color: #333; /* Text color for inactive buttons */
    cursor: pointer;
    border-radius: 5px;
    transition: background-color 0.3s, color 0.3s;
}

.tab-button.active {
    background-color: #1a73e8; /* Color for active buttons */
    color: white; /* Text color for active buttons */
}

.tab-content {
    display: none;
    /* padding: 20px; */
    background-color: #f9f9f9;
    border-radius: 5px;
    margin-top: 10px; /* Adjust this value to reduce space above the tab content */
}

.tab-content.active {
    display: block;
}

.content-image {
    width: 100%;
    max-width: 160px;
    height: auto; /* Maintain aspect ratio */
    display: block;
    margin: 10px auto; /* Center the image horizontally */
    border-radius: 8px; /* Rounded corners */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Subtle shadow for depth */
    transition: transform 0.3s, box-shadow 0.3s; /* Smooth transition for hover effects */
}

.content-image:hover {
    transform: scale(1.05); /* Slightly enlarge the image on hover */
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2); /* Enhance shadow on hover */
}

.image-viewer {
    display: flex;
    justify-content: center; /* Center the image-scroll container */
    overflow-x: auto;
    white-space: nowrap;
    padding: 10px 0;
    margin-top: 20px; /* Space above the image viewer */
    border-top: 1px solid #e0e0e0; /* Optional: a border to separate from the changelog */
}

.image-scroll {
    display: inline-block; /* Ensure the images are in a single line */
}

.scroll-image {
    display: inline-block;
    width: 150px; /* Adjust width as needed */
    height: auto;
    margin-right: 10px; /* Space between images */
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.scroll-image:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.modal {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 1000; /* Sit on top */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    background-color: rgba(0, 0, 0, 0.8); /* Black background with opacity */
    overflow: hidden; /* Prevent scrolling */
    display: flex; /* Use flexbox to center content */
    justify-content: center; /* Center horizontally */
    align-items: center; /* Center vertically */
}

.modal-content {
    max-width: 90%; /* Maximum width of the image */
    max-height: 90%; /* Maximum height of the image */
    object-fit: contain; /* Maintain aspect ratio */
    margin: auto; /* Center the image */
    display: flex;
}

.close {
    position: absolute;
    top: 15px;
    right: 35px;
    color: white;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
}

body {
    font-family: 'Noto Sans', Arial, sans-serif; /* Clean and modern font */
    background-color: #f4f4f9; /* Light grey background for a subtle look */
    color: #333; /* Dark grey text for better readability */
    line-height: 1.6; /* Improved line spacing */
    padding: 20px; /* Padding around the content */
}

.helpdesk-container {
    max-width: 800px; /* Limiting the width for better readability */
    margin: auto; /* Centering the container */
    background: #ffffff; /* White background for the content area */
    box-shadow: 0 2px 5px rgba(0,0,0,0.1); /* Subtle shadow for depth */
    padding: 20px; /* Padding inside the container */
    border-radius: 8px; /* Rounded corners */
}

h1, h2 {
    color: #1a73e8; /* A blue color for headings */
}

h1 {
    margin-bottom: 0.5em; /* Space below the main title */
}

h2 {
    border-bottom: 2px solid #eee; /* Subtle line under the section title */
    padding-bottom: 10px; /* Spacing under the section title */
}

.faq-item {
    margin-top: 20px; /* Space above each FAQ item */
    padding: 15px; /* Padding inside each FAQ item */
    background: #f9f9f9; /* Slightly different background for separation */
    border-left: 5px solid #1a73e8; /* Blue left border for style */
    border-radius: 5px; /* Rounded corners */
}

.faq-item h3 {
    color: #d14836; /* Red color for question */
    cursor: pointer; /* Indicates the item can be interacted with */
    user-select: none; /* Prevents text selection */
}

.faq-item p, .faq-item ol {
    padding-left: 20px; /* Indent text for better readability */
}

.faq-item:hover {
    background-color: #e8f0fe; /* Change background on hover */
}

ol {
    padding-left: 20px; /* Proper alignment for list */
}

.changelog-footer {
    margin-top: 3rem;
    padding: 1rem 2rem;
    background-color: #ffffff;
    border-top: 1px solid #eee;
}

.footer-content {
    /* max-width: 1200px; */
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    color: #666;
}

.footer-links {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-link {
    color: #666;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-link:hover {
    color: #1a73e8;
}

.separator {
    color: #ccc;
    font-size: 10px;
}

.footer-copyright {
    color: #666;
}

.last-update {
    color: #666;
    font-size: 12px;
}

.last-update time {
    font-weight: 500;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .changelog-footer {
        padding: 1rem;
    }
    
    .footer-content {
        font-size: 12px;
        gap: 8px;
    }
}

@media (max-width: 600px) {
    .footer-content {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }

    .footer-links {
        justify-content: center;
    }

    .last-update {
        font-size: 11px;
    }
}

@media (max-width: 380px) {
    .footer-links {
        flex-direction: column;
        gap: 8px;
    }

    .separator {
        display: none;
    }
}