/* main.css */

/* Add padding around the body content to prevent text from being too close to the edges */
body {
    padding: 20px;
    background-color: #e7f2f8;
    font-size: 18px;
    /*font-family: 'Trebuchet MS', Helvetica, sans-serif;*/
}

/* Custom table styles */
table {
    /* Keep border-collapse to ensure borders are not double between cells */
    border-collapse: collapse;
    /* Add a border to the whole table */
    border: 1px solid #999;
}

/* Styling for table data and header cells */
td, th {
    /* Add a border to each cell */
    border: 1px solid #999;
    /* Add padding inside each cell for spacing */
    padding: 20px;
    /* Align text to the left in each cell */
    text-align: left;
}

/* Ensure that the custom table styles do not override Bootstrap's table styles */
/* This class should be added to your table element in the React component */
.custom-table td,
.custom-table th {
    /* Custom padding for cells if needed, or comment this out to use Bootstrap's padding */
    padding: 20px;

}
.App, .Test {
    max-width: 1300px;
    margin: 0 auto;
    padding: 30px;
    border: 1px solid #ccc;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    background-color: #f9f9f9;
}
.App, .Test h1 {
    color:#2E2E2E;
    font-size: 36px;
    margin-bottom: 13px;

}
.App, .Test h2 {
    color: #333;
    font-size: 33px;
    margin-bottom: 16px;
}
.App, .Test h4 {
    color: #333;
    font-size: 25px;
    margin-bottom: 16px;
}

.App, .Test p {
    color: #666;
    font-size: 18px;
    line-height: 1.5;
}

.navbar {
    background-color: #DDD;
    padding: 10px 0;
}

.nav-menu {
    list-style: none;
    margin: 0;
    padding: 0;
}
/*.nav-button {*/
/*    padding: 15px 30px;*/
/*    background-color: #fecdf9;*/
/*    color: #000;*/
/*    border: none;*/
/*    border-radius: 8px;*/
/*    font-size: 1.2rem;*/
/*    cursor: pointer;*/
/*    transition: background-color 0.3s, box-shadow 0.3s;*/
/*    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);*/
/*    margin-top: 20px; !* Add space above the button *!*/
/*    !*text-transform: uppercase; !* Add text transformation for a more modern look *!*!*/
/*    font-weight: bold; !* Add font weight for emphasis *!*/
/*    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;*/
/*}*/

/*.nav-button:hover, .nav-button:focus {*/
/*    background-color: #fcb4f4;*/
/*    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);*/
/*}*/

/*.nav-button:active {*/
/*    background-color: #f889ec;*/
/*    box-shadow: 0 2px 3px rgba(0, 0, 0, 0.1);*/
/*}*/
/*.nav-item {*/
/*    display: inline-block;*/
/*    margin-right: 20px;*/
/*    margin-left: 10px;*/
/*}*/

/*.nav-link {*/
/*    color: #333;*/
/*    text-decoration: none;*/
/*    font-weight: bold;*/
/*    !*padding: 5px 10px;*!*/
/*    padding-left: 15px; !* Increase left padding to move text over *!*/
/*    padding-right: 15px;*/
/*    border-radius: 5px;*/
/*    transition: background-color 0.3s;*/
/*    background-color: #ffffff; !* Starting with white for the button *!*/
/*}*/

/*.nav-link:hover {*/
/*    background-color: #AAA;*/
/*    color: #FFF;*/
/*    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);*/
/*}*/

footer {
    background-color: #888;
    color: #fff;
    padding: 15px 0;

    text-align: center;
}

.main-body {
    padding-top: 30px;
    padding-bottom: 30px;
}

.card {
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out;
    margin: 10px;
}

.card:hover {
    transform: translateY(-5px);
}

.card-img-top {
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
}

.card-body {
    padding: 20px;
}

.card-title {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 10px;
}

.card-subtitle {
    font-size: 1.3rem;
    color: #666;
    margin-bottom: 10px;
}

.card-text {
    font-size: 1.1rem;
    line-height: 1.4;
}

.card-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* Set four columns */
    gap: 15px;
}

@media (max-height: 500px) {
    .card-container {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}

@media (max-height: 300px) {
    .card-container {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
}

.health-message-container {
    background-color: #f9e6f9; /* Light purple background */
    padding: 20px;
    border-radius: 8px;
    margin-top: 20px; /* Space before the heading */
    margin-bottom: 20px;
}
/*h1 {*/
/*    font-size: 3rem; !* Adjust this value to make h2 headings larger *!*/
/*    color: #000;*/
/*    font-weight: 550;*/
/*}*/
/*h2 {*/
/*    font-size: 2.2rem; !* Adjust this value to make h2 headings larger *!*/
/*    font-weight: 550;*/
/*}*/

/*h4 {*/
/*    font-size: 1.75rem; !* Adjust this value to make h4 headings larger *!*/
/*    font-weight: 550;*/
/*}*/

/*h5 {*/
/*    font-size: 1.6rem; !* Adjust this value to make h5 headings larger *!*/
/*    font-weight: 550;*/
/*    margin-top: 40px; !* Increase space above the heading *!*/
/*    margin-bottom: 10px; !* Add some space after the heading *!*/
/*}*/

.slideshow-container {
    width: 100%;
    max-width: 800px;
    margin: 0 auto 30px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.slideshow-container img {
    width: 100%;
    height: auto;
    display: block;
}/* main.css */

/* Add padding around the body content to prevent text from being too close to the edges */
body {
    padding: 20px;
    background-color: #e7f2f8;
    font-size: 18px;
    /*font-family: 'Trebuchet MS', Helvetica, sans-serif;*/
}

/* Custom table styles */
table {
    /* Keep border-collapse to ensure borders are not double between cells */
    border-collapse: collapse;
    /* Add a border to the whole table */
    border: 1px solid #999;
}

/* Styling for table data and header cells */
td, th {
    /* Add a border to each cell */
    border: 1px solid #999;
    /* Add padding inside each cell for spacing */
    padding: 20px;
    /* Align text to the left in each cell */
    text-align: left;
}

/* Ensure that the custom table styles do not override Bootstrap's table styles */
/* This class should be added to your table element in the React component */
.custom-table td,
.custom-table th {
    /* Custom padding for cells if needed, or comment this out to use Bootstrap's padding */
    padding: 20px;

}
.App, .Test {
    max-width: 1700px;
    margin: 0 auto;
    padding: 30px;
    border: 1px solid #ccc;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    background-color: #f9f9f9;
}

/*.App, .Test h2 {*/
/*    color: #333;*/
/*    font-size: 40px;*/
/*    margin-bottom: 16px;*/
/*}*/
/*.App, .Test h4 {*/
/*    color: #333;*/
/*    font-size: 30px;*/
/*    margin-bottom: 16px;*/
/*}*/

/*.App, .Test p {*/
/*    color: #666;*/
/*    font-size: 22px;*/
/*    line-height: 1.5;*/
/*}*/

.navbar {
    background-color: #DDD;
    padding: 10px 0;
}

.nav-menu {
    list-style: none;
    margin: 0;
    padding: 0;
}
.nav-button {
    padding: 10px 24px;
    background-color: #fecdf9;
    color: #000;
    border: none;
    border-radius: 8px;
    font-size: 1.2rem;
    cursor: pointer;
    transition: background-color 0.3s, box-shadow 0.3s;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
    margin-top: 20px; /* Add space above the button */
    /*text-transform: uppercase; !* Add text transformation for a more modern look *!*/
    font-weight: bold; /* Add font weight for emphasis */
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

.nav-button:hover, .nav-button:focus {
    background-color: #fcb4f4;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

.nav-button:active {
    background-color: #f889ec;
    box-shadow: 0 2px 3px rgba(0, 0, 0, 0.1);
}
.nav-item {
    display: inline-block;
    margin-right: 20px;
    margin-left: 10px;
}

.nav-link {
    color: #333;
    text-decoration: none;
    font-weight: bold;
    /*padding: 5px 10px;*/
    padding-left: 15px; /* Increase left padding to move text over */
    padding-right: 15px;
    border-radius: 5px;
    transition: background-color 0.3s;
    background-color: #ffffff; /* Starting with white for the button */
}

.nav-link:hover {
    background-color: #AAA;
    color: #FFF;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

footer {
    background-color: #888;
    color: #fff;
    padding: 15px 0;

    text-align: center;
}

.main-body {
    padding-top: 30px;
    padding-bottom: 30px;
}

.card {
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out;
    margin: 10px;
}

.card:hover {
    transform: translateY(-5px);
}

.card-img-top {
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
}

.card-body {
    padding: 20px;
}

.card-title {
    font-size: 1.6rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.card-subtitle {
    font-size: 1.2rem;
    color: #666;
    font-weight: 500;
    margin-bottom: 10px;
}

.card-text {
    font-size: 1.1rem;
    line-height: 1.4;
}

.card-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* Set four columns */
    gap: 15px;
}

@media (max-height: 500px) {
    .card-container {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}

@media (max-height: 300px) {
    .card-container {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
}

.health-message-container {
    background-color: #f9e6f9; /* Light purple background */
    padding: 20px;
    border-radius: 8px;
    margin-top: 20px; /* Space before the heading */
    margin-bottom: 20px;
}

.slideshow-container {
    width: 100%;
    max-width: 800px;
    margin: 0 auto 30px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.slideshow-container img {
    width: 100%;
    height: auto;
    display: block;
}

.slideshow-button {
    background-color: #fecdf9;
    color: #000;
    border: none;
    padding: 15px;
    cursor: pointer;
    font-size: 24px;
    border-radius: 10px;
    transition: background-color 0.3s ease, transform 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 10px;
}

.slideshow-button:hover, .slideshow-button:focus {
    background-color: #fcb4f4;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
    transform: scale(1.1);
}
.slideshow-button:active {
    background-color: #f889ec;
    box-shadow: 0 2px 3px rgba(0, 0, 0, 0.1);
}

.health-message-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
    background-color: #fff; /* Neutral white background for better readability */
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Subtle shadow for depth */
}

.health-message-table th, .health-message-table td {
    border: 1px solid #ddd;
    padding: 15px; /* Slightly larger padding for better spacing */
    text-align: left; /* Align text to the left */
    vertical-align: top; /* Align content to the top of cells */
    word-wrap: break-word; /* Ensure text wraps within cells */
}

.health-message-table th {
    background-color: #c48cc4; /* Soft pink for the header */
    color: #ffffff; /* White text for contrast */
    text-align: left;
    font-weight: bold; /* Bold font for header text */
    font-size: 16px; /* Adjusted font size for readability */
}

.health-message-table td {
    font-size: 14px; /* Slightly smaller font size for content */
    line-height: 1.5; /* Increase line height for better readability */
}

.health-message-table tr:nth-child(even) {
    background-color: #f9f9f9; /* Light gray for alternating rows */
}

.health-message-table tr:hover td {
    background-color: #f3e6f3; /* Light pink for row hover effect */
}

.health-message-table td:last-child {
    text-align: center; /* Center-align the "Review Date" column */
}
