@font-face {
    font-family: 'manrope';
    src: url('Manrope-VariableFont_wght.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}
body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    box-sizing: border-box;
    font-family: 'manrope', sans-serif;
    background: #E5F1EC;
    overflow-y: auto;

}
.Gant{
    padding-top: 80px;
    padding-right: 50px;
    border-radius: 10px; /* Rounded corners for cells */
    font-family: Manrope, sans-serif;
    font-size: 18px;
}
div {
    font-family: 'manrope', sans-serif;
}
.header {
    height: 15%; /* Header takes up 10% of the height */
    width: 100%;
    background: #f3f3f3; /* Light gray background */
    font-size: 20px; /* Set the font size as desired */
    overflow: auto; /* Establishes a new block formatting context */
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box; /* This ensures padding and borders don't affect the total width/height */
}
.main-content {
    display: flex;
    gap: 0;
    height: 90%; /* Main content takes the remaining 90% of the height */
    width: 100%;
}
.left-column {
    width: 20%; /* Left column takes up 20% of the width */
    height: 100%;
    overflow-y: auto;
}
.right-column {
    width: 80%; /* Right column takes up 80% of the width */
    height: 100%;
    padding: 0;
    margin: 0;
    overflow-y: auto;
}
iframe {
    width: 100%;
    height: 100%;
    border: none; /* Removes the border from iframes */
    display: block;
    overflow-y: auto;
}
.index {
    margin-left: 30px;
    margin-top: 40px;
}
.button1 {
    background: #C8E0D6; /* No background */
    border: none; /* No border */
    margin: 0; /* No margin */
    /*color: blue;  Text color to make it look like a typical hyperlink */
    cursor: pointer; /* Changes the cursor to signify clickable */
    /*text-decoration: underline;  Underline to signify it is a link */
    padding: 10px; /* Space inside cells */
    border: 2px Black; /* Green border for cells */
    border-radius: 10px; /* Rounded corners for cells */
    font-family: Manrope, sans-serif;
    font-size: 18px;
}

.button2 {
    background: none; /* No background */
    border: none; /* No border */
    margin: 0; /* No margin */
    /*color: blue;  Text color to make it look like a typical hyperlink */
    cursor: pointer; /* Changes the cursor to signify clickable */
    /*text-decoration: underline;  Underline to signify it is a link */
    padding: 10px; /* Space inside cells */
    border: 2px Black; /* Green border for cells */
    border-radius: 10px; /* Rounded corners for cells */
    font-family: Manrope, sans-serif;
    font-size: 18px;
}
.myList {
    list-style-type: none; /* Removes the default list bullets */
    padding-left: 20px; /* Adds left padding to indent the list */
    margin: 0; /* Removes default margin */
    font-family: Manrope, sans-serif;
}

.myList li {
    padding: 4px 0; /* Adds some vertical padding for each list item */
}

.myList li a {
    text-decoration: none; /* Removes underline from links */
    color: #333; /* Sets the text color of the links to black */
    font-family: Manrope, sans-serif; /* Sets a clean, sans-serif font */
}

.myList li a:hover {
    text-decoration: underline; /* Adds underline on hover for visual feedback */
}
.input-container {
    padding-left: 100px;
}
.image3 {
    padding-left: 100px;
}
.arrow-down, .arrow-up {
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: 5px;
    vertical-align: middle;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
}

.arrow-down {
    border-top: 5px solid black; /* Triangle pointing down */
}

.arrow-up {
    border-bottom: 5px solid black; /* Triangle pointing up */
}
.right-align {
    text-align: right;
    padding-right: 100px;
    float: right; /* Float the paragraph to the right */
    height: 100%; /* Make sure it takes up full height of header */
    display: flex; /* Use flexbox for vertical centering */
    align-items: center; /* Center vertically within the header */
}
.images-container {
    float: left; /* Float the container to the left */
}
table {
    border-collapse: separate;
    border-spacing: 10px; /* Space between rows and columns */
    width: 80%;
    border: 2px Black; /* Green border */
    border-radius: 10px; /* Rounded corners */
    font-family: Manrope, sans-serif;
}
.table2{
    border-collapse: separate;
    border-spacing: 10px; /* Space between rows and columns */
    width: 100%;
    border: 2px Black; /* Green border */
    border-radius: 10px; /* Rounded corners */
    font-family: Manrope, sans-serif;
}
th, td {
    padding: 10px; /* Space inside cells */
    border: 2px Black; /* Green border for cells */
    border-radius: 10px; /* Rounded corners for cells */
}
.field {
    padding: 10px; /* Space inside cells */
    border: 2px Black; /* Green border for cells */
    border-radius: 10px; /* Rounded corners for cells */
    background-color: #BEEEDA;
}
td {
    background-color: #C8E0D6; /* Light green background for headers */
}
th {
    background-color: #C8E0D6; /* Light green background for headers */
}
.borderless-form input[type="text"],
.borderless-form input[type="email"],
.borderless-form input[type="password"],
.borderless-form input[type="date"],
.borderless-form input[type="submit"] {
    border: none;
    padding: 10px;
    margin-bottom: 10px;
    width: 100%;
    box-sizing: border-box; /* Ensures padding doesn't affect overall width */
    font-family: Manrope, sans-serif;
}

.borderless-form input[type="submit"] {
    background-color: #4CAF50;
    color: white;
    cursor: pointer;
}

.borderless-form input[type="submit"]:hover {
    background-color: #45a049;
}
.no-underline {
    font-family: Manrope, sans-serif;
    text-decoration: none; /* Removes the underline */
    color: #000000; /* Sets the text color to black */
    padding: 10px; /* Space inside cells */
    border: 2px Black; /* Green border for cells */
    border-radius: 10px; /* Rounded corners for cells */
    background-color: #C8E0D6;
}
.no-underline:hover {
    text-decoration: none; /* Keeps the underline removed on hover */
    color: White; /* Keeps the text color black on hover */
}
.myChartDiv {
    padding-top: 5%;
    padding-bottom: 5% ;
    padding-right: 5%;
    max-width: 1500px;
    max-height: 700px;
}
/* Hide the default file input */

