/* General Styles */
body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    background-color: #0a2540; /* Dark Blue */
    color: #ffffff; /* White Text */
    text-align: center;
    flex-direction: column;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh; /* Full viewport height */
    gap: 10px;
    height: 100%;
}

/* Container Styles */
.container {
    width: 90vw;  /* Full width of the viewport */
    max-width: 100%;  /* Remove fixed max width */
    padding: 30; /* More padding for a balanced look */
    border-radius: 12px; /* Softer corners */
    background-color: #112d4e; /* Slightly lighter dark blue */
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4); /* Enhanced shadow for depth */
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 20px;
    margin-top: 10px;
}


/* Image and Text Container */
.image-text-container {
    display: flex;  /* # Use flexbox to align image and text side by side */
    align-items: center;  /* # Vertically center the items */
    justify-content: center;  /* # Center the items horizontally */
    margin-bottom: 20px;  /* # Add space below the container */
    flex-direction: row; /*  # Ensure image and text are in a row layout */
    width: 80vw;  /* # Set the container width to 90% of the screen */
    margin-left: auto;  /* # Center horizontally */
    margin-right: auto;  /* # Center horizontally */
    margin-top: 10px;
}

.image-text-container h2 {
    margin-top: 0;
    color: #ffffff;
    margin-right: 80px
}


/* Style the image */
.image-text-container img {
    width: 30vw;
    height: auto;
    margin-bottom: 10px;
}

.describing-text-container {
    width: 60vw;
    text-align: left;
    /* max-width: 50vw; */
}

.description-text-note {
    margin-bottom: 40px;
}

.text-container {
    text-align: center;
}

/* .dash-table-container .previous-page,
.dash-table-container .next-page, */
.dash-table-container .first-page,
.dash-table-container .last-page,
.dash-table-container .page-number {
    display: none !important;
}


/* Table container */
.data-table-container {
    width: 80vw;  /* Allow table container to fill 100% of screen */
    max-width: 85vw; 
    margin: auto;
    font-size: 20px;
    padding: 10px;
}

.table-style {
    width: 80vw;
    border-radius: 10px;  /* # Round the edges of the whole table */
    overflow: hidden;  /* # Ensure the table doesn't spill over after rounding */
    overflow-x: auto;  /* # Allow horizontal scrolling if needed */
    display: block;  /* # Prevent it from expanding beyond div */
    border: 2px solid #112d4e;  /* # Light blue border for table */
}

/* Odd rows */
.data-table-row-odd {
    background-color: #f2f2f2; /* Lighter blue */
}

/* Even rows */
.data-table-row-even {
    background-color: #d9d9d9; /* Slightly darker blue */
}

/* Ensure the checkboxes container spans the full width and aligns items vertically */
.checkboxes-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;  /* Align checkboxes and titles to the top */
    width: 60vw;  /* Full width */
    margin: 0 auto;
    padding: 30px;
    background-color: #294766;
    font-size: 20px;
    border-radius: 8px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);

}

.checkboxes-column {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;  /* Align titles and checkboxes to the top */
    align-items: center;  /* Center content horizontally */
    width: 48%;  /* Set to 48% of the parent width */
    padding: 10px;
    box-sizing: border-box;  /* Ensure padding doesn't overflow */
    font-size: 20px;
}

/* Style for titles (H3) */
.checkboxes-column h3 {
    color: #fff;
    font-size: 22px;
    margin-bottom: 10px;  /* Space between title and checklist */
    text-align: center;  /* Align title to the left */
}

/* Properly aligns checkboxes and labels */
.custom-checkbox {
    display: flex;
    flex-direction: column;
    align-items: flex-start; /* Ensures checkboxes are aligned from the left */
}

.subscription-form-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #294766;
    padding: 30px;
    border-radius: 8px;
    width: 60vw;
    max-width: 60vw;
    margin: auto;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
    margin-top: 40px;
    margin-bottom: 40px;
}

.subscribe-button {
    font-size: 20px;
    padding: 20px 150px;
    background-color: #0a2540;
    color: #ffffff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.links-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #294766;
    padding: 30px;
    border-radius: 8px;
    width: 60vw;
    max-width: 60vw;
    margin: auto;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
    margin-top: 40px;
    margin-bottom: 40px;    
}

.FAQ-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #294766;
    padding: 30px;
    border-radius: 8px;
    width: 60vw;
    max-width: 60vw;
    margin: auto;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
    margin-top: 40px;
    margin-bottom: 40px;    
}

.example-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #294766;
    padding: 30px;
    border-radius: 8px;
    width: 60vw;
    max-width: 60vw;
    margin: auto;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
    margin-top: 40px;
    margin-bottom: 40px;    
}



/* Media Query for smaller screens (max-width: 768px) */
@media screen and (max-width: 820px) {
    .container {
        align-items: center;
        width: 100vw;
        display: flex;
        flex-direction: column;  /* Stack image and text vertically */
        padding: 0px;
    }

    .image-text-container {
        flex-direction: column;  /* Stack image and text vertically */
        width: 90vw;  /* Full width on smaller screens */
        align-items: center;
        font-size: 12px;
        display: flex;
    }

    .image-text-container h2 {
        align-items: right;  /* Left-align text */
        margin-right: 0;  /* Remove right margin on small screens */
        margin-bottom: 10px;
        margin-top: 10px;
    }

    .image-text-container img {
        width: 50vw;  /* Make image responsive */
        height: auto;
    }

    .describing-text-container {
        width: 80vw;
    }

    .description-text-note {
        margin-bottom: 20px;
        width: 80vw;
    }

    .text-container {
        width: 70vw;
        align-items: center;
        text-align: center;
        font-size: 18px;
    }

    .data-table-container {
        font-size: 12px;
        padding: 1px;
    }

    .checkboxes-wrapper {
        flex-direction: column;
        align-items: center;
        font-size: 16px;
        width: 60vw;  /* Full width */
    }

    .checkboxes-column {
        font-size: 16px;
        width: 60vw;
    }

    .checkboxes-column h3 {
        font-size: 20px;
        width: 60vw;
    }
    .subscribe-button {
        font-size: 16px;
        padding: 10px 50px;
        width: 100%;  /* Makes the button full width for small screens */
    }
    .checkboxes-container {
        width: 80vw;
        text-align: center;
        align-items: center;
        justify-content: center;
    }
}

