@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;600;700&display=swap');

:root {
    --overlaycolor1: rgba(0, 51, 78, 0.12);
    --overlaycolor2: rgba(92, 205, 228, 0.304);
    --overlaycolor3: rgba(233, 245, 248, 0.944);
    --color1: rgb(252, 249, 249);
    --color2: rgb(237, 47, 47);

    --color3: rgb(50, 50, 50);
    --color4: rgb(247, 44, 44);
    --color5: #9b0f0f;
    --color5: rgb(113, 42, 42);
    --color6: rgb(58, 172, 207);
    --color7: rgb(107, 179, 201);

    --textcolor1: rgb(62, 62, 62);

    --boardcolor1: rgb(244, 249, 251);
    --boardcolor2: rgb(220, 232, 237);
}

/* Apply the font to the entire document */
body {
    font-family: 'Open Sans', sans-serif;
    font-weight: 300; 
    /*     background-color: rgb(244, 249, 251); */
    margin: 0;
    padding: 0;
    color: #333;
}

header {
    background-color: #fff;
    padding: 30px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #333;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    box-sizing: border-box;
    transition: box-shadow 0.3s ease; /* Add smooth transition */
}

/* Header styling */
.loggedin-header {

    padding: 20px 20px; /* Adjust padding as needed */
    background-color: #011e28; /* Background color of the header */
    border-bottom: 1px solid #ddd; /* Optional: border at the bottom */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0);
}

/* Flex container for menubar and logo */
.header-content {
    display: flex;
    align-items: center; /* Align items in the center vertically */
}

.menubar {
    margin-left: 10px; /* Space between menubar icon and logo */
    font-size: 18px; /* Adjust size as needed */
    cursor: pointer;
}

.logo {
    margin-left: 20px;
    font-size: 18px; /* Adjust size as needed */
    font-weight: 700; /* Optional: bold text */
    color: var(--color2);
}

nav {
    display: flex;
    align-items: center;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 30px; /* Increased gap between navigation links */
    margin: 0;
    padding: 0; /* Remove default padding */
}

.nav-links a {
    color: #333;
    text-decoration: none;
    font-weight: 300; /* Thinner font weight
    color: #333; */
    position: relative; /* For positioning the underline */
    padding-bottom: 4px; /* Space for the underline */
    background-color: rgba(255, 255, 255, 0);
    font-size: 16px;
}

.nav-links a:hover, .btn:hover {
    border-bottom: 2px solid #000; /* Black underline on hover */
}

.nav-links a.active {
    font-weight: 400; /* Optionally, make the active link bolder */
    color: #000000; /* Optionally, change the text color for the active link */
    border-bottom: 2px solid #000; /* Black underline for the active link */
}

.nav-links li {
    margin: 0;
}

.loggedin-header .nav-links a{
    color: white;
}

.loggedin-header .nav-links a:hover, .btn:hover {
    border-bottom: 2px solid #ffffff; /* Black underline on hover */
}

.loggedin-header .nav-links a.active {
    font-weight: 400; /* Optionally, make the active link bolder */
    color: #ffffff; /* Optionally, change the text color for the active link */
    border-bottom: 2px solid #ffffff; /* Black underline for the active link */
}

.sign-button {
    background-color: var(--color4);
    color: #fff;
    padding: 15px 50px;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    font-weight: 300; /* Thinner font weight */
    font-size: 16px;
    text-decoration: none; /* Ensures no underline or decoration */
}

.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-top: 80px; /* Adjusted for fixed header */
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: translate(-50%, -50%);
    z-index: 1;
    /* Ensure the video loop attribute is working */
    /* Do not add `pointer-events: none` here */
}

.hero-overlay {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 2; /* Ensures the content is above both the video and overlay */
    background-color: rgba(2, 15, 26, 0.0);
    align-items: center;
}

.hero-content {
    width: 50%; 
    position: relative;
    z-index: 3; 
    text-align: center; 
    margin: 0 auto;

    margin-top: 200px;
    opacity: 0; 
    transform: translateY(80px); 
    transition: opacity 0.8s ease-out, transform 0.8s ease-out; /
}

.hero-content.visible {
    opacity: 1; /* Fully visible */
    transform: translateY(0); /* Reset position */
}


.hero h1 {
    font-size: 64px; 
    font-family: 'Open Sans', sans-serif; 
    font-weight: 600; 
    line-height: 1.3; 
    letter-spacing: 1px;
    text-decoration: none; 
    margin-bottom: 20px; 
    text-align: center; 
    color: var(--color5);
}

.hero p {
    margin-bottom: 70px;
    font-size: 20px; 
    font-family: 'Open Sans', sans-serif; 
    font-weight: 300; 
    line-height: 1.3; 
    color: var(--color5);
}

.features, .pricing {
    padding: 50px 20px;
    text-align: center;
    margin-top: 50px; /* Adjusted for fixed header */
}

.features h2, .pricing h2 {
    margin-bottom: 40px;
    font-weight: 300; /* Thinner font weight */
}

.feature-item {
    margin-bottom: 20px;
    font-weight: 300; /* Thinner font weight */
}

.pricing-plan {
    display: inline-block;
    background-color: #f7f7f7;
    padding: 20px;
    margin: 20px;
    border-radius: 10px;
    font-weight: 300; /* Thinner font weight */
}

footer {
    background-color: #333;
    color: #fff;
    text-align: center;
    padding: 10px 0;
    font-weight: 300; /* Thinner font weight */
}
/* Container for tabs and tab content */
.tab-container {
    display: flex;
    justify-content: flex-start; /* Align tabs horizontally */
    margin-top: 80px; /* Adjust this if your header height changes */
    background-color: rgba(243, 244, 247, 0); /* Optional: background color to distinguish */
    padding: 0 20px; /* Add horizontal padding */
    border-bottom: 1px solid #cecece;
    margin-left: 120px;
    margin-right: 120px;
}

/* Horizontal tab menu */
.tabs {
    display: flex;
    background-color: #ffffff; /* Background color for the tab menu */
     /* Bottom border for the tab menu 
     border-bottom: 1px solid #cecece;*/
     width: 90%;
     overflow-x: auto;
}

/* Individual tab styles */
.tablink {
    padding: 20px 20px;
    padding-bottom: 10px;
    margin-right: 10px; /* Space between tabs */
    border: 1px solid transparent;
    border-radius: 5px 5px 0 0; /* Rounded top corners for tabs */
    cursor: pointer;
    font-weight: 300;
    text-align: center;
    white-space: nowrap; /* Prevent text from wrapping */
    font-size: 14px;
    transition: background-color 0.3s, border-color 0.3s;
    border-bottom: 2px solid #cecece00;

    text-decoration: none;
    font-weight: 300; /* Thinner font weight
    color: #333; */
    position: relative; /* For positioning the underline */

    background-color: rgba(255, 255, 255, 0);
    font-size: 16px;
}

/* Individual tab styles */
.tablink2 {
    visibility: hidden;
    padding: 20px 20px;
    padding-bottom: 10px;
    margin-right: 10px; /* Space between tabs */
    border: 1px solid transparent;
    border-radius: 5px 5px 0 0; /* Rounded top corners for tabs */
    cursor: pointer;
    font-weight: 300;
    text-align: center;
    white-space: nowrap; /* Prevent text from wrapping */
    font-size: 14px;
    transition: background-color 0.3s, border-color 0.3s;
    border-bottom: 2px solid #cecece00;

    text-decoration: none;
    font-weight: 300; /* Thinner font weight
    color: #333; */
    position: relative; /* For positioning the underline */

    background-color: rgba(255, 255, 255, 0);
    font-size: 16px;
    float: left;
}

.tablink.active {

    border-bottom: 2px solid #011e28;
     /* Active tab
     background-color: #e0e9f6;
      border color: #3A6EA5;
    border-color: #3A6EA5;*/
}
/* Tab content container */
.tabcontent {
    display: none; /* Hide content by default */
    padding: 20px;
    margin-top: -1px; /* Adjust for border alignment */
    border: 1px solid #00000000;
    border-radius: 0 5px 5px 5px; /* Rounded corners for content box */
    flex-grow: 1;
    margin-right: 100px;
    margin-left: 100px;
    min-height: 80vh;
}

/* Show active tab content */
.tabcontent.active {
    display: block;
    color: rgba(238, 223, 9, 0);
}

/* Ensure the content takes up the full width */
.tab-content-wrapper {
    width: 100%;
    background-color: rgba(21, 107, 226, 0);
    opacity: 0; /* Start hidden */
    transform: translateY(50px); /* Start slightly below the final position */
    transition: opacity 0.4s ease-out, transform 0.4s ease-out; /* Smooth transition */
}

.tab-content-wrapper2 {
    width: 100%;
}

.tab-content-wrapper.visible {
opacity: 1; /* Fully visible */
transform: translateY(0); /* Reset to normal position */
}

h3 {
    margin-top: 0px;
    margin-bottom: 0px;
    color: white;
}

.header-wrapper-board {
    display: flex;
    justify-content: space-between;
    align-items: center;
    /*     background-image: linear-gradient(to left, var(--overlaycolor2), var(--overlaycolor2)),
    url('https://images.pexels.com/photos/6415734/pexels-photo-6415734.jpeg?auto=compress&cs=tinysrgb&w=1260&h=750&dpr=1'); */

    background-color: var(--color7);

    background-size: cover; /* Ensure the image covers the entire div */
    background-position: center; 
    /*     background-color: #1d3557; */
    padding: 10px;
    padding-bottom: 5px;
    border-radius: 8px 8px 0px 0px;
}

.header-wrapper-index {
    display: flex;
    justify-content: space-between;
    align-items: center;
    /*     background-image: linear-gradient(to left, var(--overlaycolor2), var(--overlaycolor2)),
    url('https://images.pexels.com/photos/6415734/pexels-photo-6415734.jpeg?auto=compress&cs=tinysrgb&w=1260&h=750&dpr=1'); */

    background-color: var(--color7);
    background-size: cover; 
    background-position: center; 
    /*     background-color: #1d3557; */
    padding: 10px;
    padding-bottom: 10px;
    border-radius: 8px 8px 0px 0px;
}

.header-wrapper-index1 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-image: linear-gradient(to left, var(--overlaycolor1), var(--overlaycolor1)),
    url('https://images.pexels.com/photos/5673496/pexels-photo-5673496.jpeg?auto=compress&cs=tinysrgb&w=1260&h=750&dpr=1');

    background-size: cover; /* Ensure the image covers the entire div */
    background-position: center; 
    /*     background-color: #1d3557; */
    padding: 20px;
    padding-bottom: 250px;
    border-radius: 8px 8px 0px 0px;
}

.header-wrapper-index2 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-image: linear-gradient(to left, var(--overlaycolor1), var(--overlaycolor1)),
    url('https://images.pexels.com/photos/8353802/pexels-photo-8353802.jpeg?auto=compress&cs=tinysrgb&w=1260&h=750&dpr=1');

    background-size: cover; /* Ensure the image covers the entire div */
    background-position: center; 
    /*     background-color: #1d3557; */
    padding: 20px;
    padding-bottom: 250px;
    border-radius: 8px 8px 0px 0px;
}

.header-wrapper2 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-image: linear-gradient(to left, var(--overlaycolor1), var(--overlaycolor1)),
    url('https://images.pexels.com/photos/6770610/pexels-photo-6770610.jpeg?auto=compress&cs=tinysrgb&w=1260&h=750&dpr=1');

    background-size: cover; /* Ensure the image covers the entire div */
    background-position: center; 
    /*     background-color: #1d3557; */
    padding: 20px;
    border-radius: 8px 8px 0px 0px;
}

.header-wrapper-home1 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-image: linear-gradient(to left, var(--overlaycolor2), var(--overlaycolor2)),
    url('https://images.pexels.com/photos/6415734/pexels-photo-6415734.jpeg?auto=compress&cs=tinysrgb&w=1260&h=750&dpr=1');

    background-size: cover; /* Ensure the image covers the entire div */
    background-position: center; 
    /*     background-color: #1d3557; */
    padding: 20px;
    padding-bottom: 60px;
    border-radius: 8px 8px 0px 0px;
}

.header-wrapper-home2 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-image: linear-gradient(to left, var(--overlaycolor2), var(--overlaycolor2)),
    url('https://images.pexels.com/photos/6415734/pexels-photo-6415734.jpeg?auto=compress&cs=tinysrgb&w=1260&h=750&dpr=1');

    background-size: cover; /* Ensure the image covers the entire div */
    /*     background-color: #1d3557; */
    padding: 20px;
    padding-bottom: 60px;
    border-radius: 8px 8px 0px 0px;
}

.header-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px; 
    margin-top: 20px;
}

/* Style for the download button */
.downloadbtn {
    background-color: #0078d4; /* Excel-like blue color */
    color: white; /* Text color */
    border: none; /* No border */
    border-radius: 5px; /* Rounded corners */
    padding: 10px 20px; /* Padding for button */
    font-size: 14px; /* Font size */
    cursor: pointer; /* Pointer cursor on hover */
    transition: background-color 0.3s ease; 

}

/* Button hover effect */
.downloadbtn:hover {
    background-color: #005a9e; /* Darker blue on hover */
}

/* Wrapper to hold chartandtable and charts2 side by side */
.chart-wrapper {
    display: flex;
    justify-content: space-between; /* Ensure spacing between elements */
    align-items: flex-start; /* Align to the top of the container */
    width: 100%;
    margin-top: 20px;
}

/* Chart and table section */
.chartandtable {
    padding-right: 30px;
    width: calc(70% - 30px); 
    display: flex; /* Ensure flexbox is applied */
    flex-direction: column; /* Stack items vertically */

    justify-content: flex-start; /* Align items to the start */
}

/* charts2 section aligned to the right */
.charts2 {
    width: 30%;
    height: 900px;
}

/* Chart container inside chartandtable and charts2 */
.bgcontainer {
    width: calc(100%);
    margin-bottom: 30px;
    background-color: rgb(244, 249, 251);
    background-color: #ffffff;

    border-radius: 8px;
    border: 1px solid #e3e2e2;
    /*padding: 20px;
        box-shadow: rgba(138, 138, 138, 0.16) 0px 0px 10px;
        */
}

.chartandfilter {
    height: 420px; /* Set the height as needed */
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: auto; /* Prevent overflow */
}

.paddingcontatiner {
    padding: 20px;
}

.chartcontainer2 {
    width: calc(100% - 20px); 
    height: 270px; 
    max-width: 100%; 
    margin-top: 30px;
    padding-left: 10px;
    padding-right: 10px;
}

.chartcontainer {
    width: calc(100% - 200px);
    height: 80%;
    padding: 10px;
}

/* Filters container */
.filters {
    width: 150px;
    height: 100%;
    font-size: 14px;
    font-family: 'Open Sans', sans-serif; 
    flex-shrink: 0; /* Prevent the filters container from shrinking */
    display: flex;
    flex-direction: column; /* Stack filters vertically */
    justify-content: flex-start; /* Align filters to the top */
    padding: 20px;
    background-color: rgba(255, 255, 255, 0.8); /* Slightly transparent background */
    border-radius: 5px;
    box-sizing: border-box; /* Ensure padding and border are included in the width calculation */
    overflow: hidden; /* Prevent content from overflowing */
}

/* Individual filter item */
.filter-item {
    margin-bottom: 10px; /* Space between each filter item */
    font-size: 12px;
}

/* Style for the filters container */
.filters2 {
    width: 100%;
    height: 60px; /* Adjust the height to fit the content */
    margin-bottom: 10px; /* Space between filters and chart */
    display: flex; /* Align filters horizontally */
    justify-content: center; /* Center filters horizontally */
    align-items: center; /* Center filters vertically */
}

/* Style for individual filter items */
.filter-item2 {
    margin-right: 15px; /* Space between filter items */
    display: inline-block;
    font-size: 12px;
    width: 30%;

}
.filter-item3 {
    margin-right: 0px; /* Space between filter items */
    display: inline-block;
    font-size: 12px;
    width: 30%;
}

/* Label styles */
.filter-item label, .filter-item2 label, .filter-item3 label {
    font-size: 12px;
    display: block;
    margin-bottom: 5px;
    font-weight: 300;
}

/* Select dropdown styles */
.filter-item select, .filter-item2 select, .filter-item3 select {
    padding: 5px;
    font-size: 12px;
    border-radius: 5px;
    border: 1px solid #ccc;
    width: 100%; /* Ensure the dropdown takes the full width of the filter container */
}

.selectinput {
    margin-bottom: 5px; /* Add a larger margin between inputswidth: 99%; */
     /* Make inputs take full width */
    background-color: white;
    border-width: 1px;
    border-radius: 5px;
    border-color: #bababa;
    height: 25px;
    font-size: 12px;
    font-family: 'Open Sans', sans-serif;
}

/* Tables Data tab */
.table-container {
    overflow-x: auto;
    overflow-y: auto;
    
    /*height:  flex-direction: row;
    height: 500px;  
        background-color: white; padding: 0px 20px;40%;*/
    padding:20px;
    
}

.table-container2 {
    overflow-x: auto;
    overflow-y: auto;
    background-color: white;
    background-color: #ffffff;
    border-radius: 8px;
    margin-top: 20px;
    height: 200px;

}

.data-table {
    margin-top: 20px;
    width: 100%;
    border-collapse: collapse;
    font-size: 12px;
}

.data-table thead {
    background-color: #ffffff;
}

.data-table thead th {
    padding: 10px 5px;
    text-align: right;
    font-weight: light;
    border-bottom: 1px solid #f0eeee;
}

.data-table tbody tr {
    border-bottom: 1px solid #f0eeee;
}

.data-table tbody tr:nth-child(even) {
    background-color: #ffffff;
}

.data-table tbody tr:hover {
    background-color: #f1f1f1;
}

.data-table tbody td {
    padding: 7px 5px;
    text-align: right;
}

.data-table tbody th {
    padding: 7px 5px;
    text-align: left;
    width: 140px;
}

.update-home {

    border: 0px solid transparent;
    border-radius: 5px 5px 0 0; /* Rounded top corners for tabs */
    cursor: pointer;
    white-space: nowrap;
    text-decoration: none;
    font-family: 'Open Sans', sans-serif;
    background-color: rgba(255, 255, 255, 0);
    padding: 0px;
    font-size: 12px;
}

.data-table-home {
    margin-top: 0px;
    border-collapse: collapse;
    font-size: 12px;
    width: 100%;
    font-weight: 400;
}


.data-table-home thead th {
    padding: 10px 5px;
    text-align: left;
    font-weight: 400;
    border-bottom: 1px solid #f0eeee;
}

.data-table-home tbody tr:nth-child(even) {
    background-color: #ffffff;
}


.data-table-home tbody td {
    padding: 7px 5px;
    text-align: left;
}

.data-table-home tbody th {
    padding: 7px 5px;
    text-align: left;
    width: 140px;
}

.data-table-home2 {
    margin-top: 0px;
    border-collapse: collapse;
    font-size: 12px;
    width: 100%;
    font-weight: 400;
}

.data-table-home2 thead {
    background-color: #ffffff;
}

.data-table-home2 thead th {
    padding: 10px 5px;
    text-align: left;
    font-weight: bold;
    border-bottom: 1px solid #f0eeee;
}

.data-table-home2 tbody tr:nth-child(even) {
    background-color: #ffffff;
}

.data-table-home2 tbody td {
    padding: 7px 5px;
    text-align: left;
}

.data-table-home2 tbody th {
    padding: 7px 5px;
    text-align: left;
    width: 140px;
}


.data-table-index {
    margin-top: 0px;
    border-collapse: collapse;
    font-size: 16px;
    width: 100%;
    font-weight: 400;
}

.data-table-index thead {
    background-color: #ffffff;
}

.data-table-index thead th {
    padding: 10px 5px;
    text-align: left;
    font-weight: bold;
    border-bottom: 1px solid #e3e2e2;
    font-size: 22px;
}

.data-table-index tbody tr:nth-child(even) {
    background-color: #ffffff;
}

.data-table-index tbody td {
    padding: 7px 5px;
    text-align: left;
}

.data-table-index tbody th {
    padding: 7px 5px;
    text-align: left;
    width: 140px;
}

/*homepage and login*/


.logincontainer {
    display: flex;
    justify-content: center;
    height: 90vh;
}

.checkoutcontent {
    padding: 20px;
    display: flex;
    flex-direction: column; /*     border-radius: 10px;
    box-shadow: rgba(0, 0, 0, 0.16) 1px 2px 8px; */
    align-items: flex-start; /* 
    box-shadow: rgba(0, 0, 0, 0.16) 1px 2px 8px;
    Align items to the start of the column 
         margin-top: 100px;
              background-color: rgb(255, 255, 255);*/
     font-family: 'Open Sans', sans-serif; 
     font-weight: 300; 
}

.loginform {
    padding: 20px;
    display: flex;
    flex-direction: column; /*     border-radius: 10px;
    box-shadow: rgba(0, 0, 0, 0.16) 1px 2px 8px; */
    align-items: flex-start; /* 
    box-shadow: rgba(0, 0, 0, 0.16) 1px 2px 8px;
    Align items to the start of the column 
         margin-top: 100px;
              background-color: rgb(255, 255, 255);*/
     font-family: 'Open Sans', sans-serif; 
     font-weight: 300; 
     max-height: calc(90vh - 100px);

}

.loginform .headerform {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%; /* Ensure the header takes full width */
    border-bottom: 1px solid rgba(34, 40, 49, 0.2);
    border-bottom: 1px solid #e3e2e2;
}

.loginform h2 {
    /*margin-bottom: 15px;*/
    color: var(--textcolor2);
    margin: 0px;
    margin-bottom: 10px;
}

.loginform a {
    color: var(--textcolor1);
   /* margin-bottom: 1vh;*/
   text-decoration: none;
}

/*
.loginform a:hover {
   text-decoration: underline; 
}
*/
.loginform label {
    
    margin-top: 5px;
    color: var(--textcolor1);

    margin-bottom: 3px;
}


/* Add CSS for inputs */
.loginform input {
    margin-bottom: 5px; /* Add a larger margin between inputs */
    width:99%; /* Make inputs take full width */
    background-color: white;
    border-width: 1px;
    border-radius: 5px;
    border-color: #bababa;
    height: 35px;
    font-size: 16px;
    font-family: 'Open Sans', sans-serif;
}

.loginform textarea[name="message"] {
    height: 180px; 
    width: 99% ;
    resize: none;
    background-color: white;
    border-radius: 5px;
    border-width: 1px;
    border-color: #bababa;
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
}

.formbg {
    margin-top: 50px;
    width: 30%;
    margin-bottom: 30px;
    background-color: #ffffff;
    border-radius: 8px;
    border: 1px solid #e9e9e9;
}

.navpush {
    height: 90px;
}

.returnbutton {
    font-size: 15px;
    padding: 5px;
    border: none;
    cursor: pointer;
    text-decoration: none;
    color: #fff;
    border-radius: 20px;
    font-weight: 200; /* Thinner font weight */
}

.loginbutton {
    font-size: 15px;
    margin-top: 10px;
    padding: 8px 25px;
    border: none;
    cursor: pointer;
    text-decoration: none;
    background-color: var(--color4);
    color: #fff;
    border-radius: 20px;
    font-weight: 200; /* Thinner font weight */
    float: left;
}

.modalbutton {
    font-size: 15px;
    margin-top: 10px;
    padding: 8px 25px;
    border: none;
    cursor: pointer;
    text-decoration: none;
    background-color: var(--color4);
    color: #fff;
    border-radius: 20px;
    font-weight: 200; /* Thinner font weight */
    float: right;
}

.modalbutton2 {
    font-size: 15px;
    margin-top: 10px;
    padding: 8px 25px;
    padding-left: 0px;
    border: none;
    cursor: pointer;
    text-decoration: none;
    background-color: white;
    color: var(--color4);
    border-radius: 20px;
    font-weight: 200; /* Thinner font weight */
    float: left;
    align-items: left;
}

.loginbutton:hover, .sign-button:hover {
    text-decoration: none;
}

.loginbutton:active, .sign-button:active, .modalbutton:active {
    background-color: #911818;
}

.loginbutton:visited {
    color: white;          /* Ensure the text remains white after the link has been visited */
}

.homepagelogo {
    padding: 5px;
    height: 50px;
    width: auto;
    /*background-color: var(--selectcolor);*/
    display: block;
    /* Remove float: right; */
    background-color: rgba(254, 217, 31, 0);
}

.icon-account {
    top: 10px;
    right: 10px;
    font-size: 40px;
    color: #333; /* Icon color */
}

.bottom-container {
    bottom: 0;
    border-top: 1px solid #e9e9e9;
    background-color: var(--color3);
    box-shadow: 0px -1px 8px rgba(0, 0, 0, 0.1);
    padding: 20px 0;
    display: flex;
    justify-content: space-between; /* Distribute logo, social media, and links */
    align-items: center;
    padding: 0 40px; /* background-color: #1d3557;Add padding to the sides */
    height: 150px;
}

/* Logo Section */
.logo-section {
    display: flex;
    align-items: center;
}

.logo {
    width: 100px; /* Adjust the logo width */
    text-decoration: none;
}

/* Social Media Icons */
.social-media {
    display: flex;
    gap: 20px;
}

.social-link {
    color: white;
    font-size: 18px;
    text-decoration: none;
    transition: color 0.2s ease;
}

.social-link i {
    transition: color 0.2s ease;
}

/* Bottom Links */
.bottom-links {
    display: flex;
    gap: 30px;
}

.bottom-item {
   /*color: #666;*/
   color: white;
    font-size: 14px;
    text-decoration: none;
    transition: color 0.1s ease;
}

/* Hover Effects */
.bottom-item:hover, 
.social-link:hover {
    color: #3a6ea5;
}

.logobottom {
    margin-left: 20px;
    font-size: 18px; /* Adjust size as needed */
    font-weight: 400; /* Optional: bold text */
    color: rgb(255, 255, 255);
}

.chartjs-tooltip {
    display: block !important; /* Ensure it's displayed */
    opacity: 1 !important; /* Ensure it's fully opaque */
    pointer-events: auto; /* Allow interaction */
    z-index: 1000; /* Ensure it's on top */
}

/* Wrapper to hold chartandtable and charts2 side by side */
.home-wrapper {
    display: flex;
    justify-content: space-between; /* Ensure spacing between elements */
    align-items: flex-start; /* Align to the top of the container */
    width: 100%;
    margin-top: 20px;
}

.indexcontent1 {
    width: 45%;
}

.indexcontent2 {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: calc(100vh - 85px); /* Adjusts to take the full height of the viewport */
}

.indexcontent3 {
    display: flex;
    min-height: calc(100vh - 85px); /* Adjusts to take the full height of the viewport */
}

.content-index {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 30%;
    padding: 20px;
    margin: 0 auto; /* Centers horizontally */
}


.content-home-user {
    padding-right: 30px;
    width: calc(40% - 30px); 
    display: flex; /* Ensure flexbox is applied */
    flex-direction: column; /* Stack items vertically */

    justify-content: flex-start; /* Align items to the start */
}

.content-home-other {
    padding-right: 30px;
    width: calc(60% - 30px); 
    display: flex; /* Ensure flexbox is applied */
    flex-direction: column; /* Stack items vertically */

    justify-content: flex-start; /* Align items to the start */
}/* Individual tab styles */

.upgrade {
    text-decoration: none;
}

.indexcontainer {
    padding: 90px;
    padding-bottom: 90px;
    display: flex;
    align-items: center;
    margin: 0;
    justify-content: space-between;
    background-size: cover;
    opacity: 0; /* Start hidden */
    transform: translateY(100px); /* Start slightly below the final position */
    transition: opacity 0.6s ease-out, transform 0.6s ease-out; /* Smooth transition */
}

.indexcontainer.visible {
    opacity: 1; /* Fully visible */
    transform: translateY(0); /* Reset to normal position */
}

.hidden1 {
    display: none;
}

.visible1 {
    display: block;
}

.hidden2 {
    display: none;
}

.visible2 {
    display: block;
}

.indexbuttonholder {
    margin-top: 25px;
    margin-bottom: 10px;
}

.downloadmanual {
    text-decoration: underline;
    cursor: pointer;
}

.navpush2 {
    visibility: hidden;
    height: 0px;
}

/*Phone formats*/
@media (max-width: 768px) {

    .indexcontainer, .home-wrapper, .chart-wrapper, .chartandfilter {
        flex-direction: column; 
        justify-content: center; 
        align-items: center; 
        padding: 0px;
        padding-top: 30px;
        height: auto;
    }

    header {
        padding: 15px 10px;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column; 
    }

    .logo {
        display: flex;
        width: 80%;
        margin: auto;
        padding: 10px;
        align-items: center; 
        justify-content: center; 
    }

    .nav-links {
        display: flex;
        width: 100%;
        margin: auto;
        padding: 10px;
        align-items: center; 
        justify-content: center;
        overflow-x: auto; 
    }

    .chartcontainer {
        width: 90%;
        height: 400px;
        padding: 10px;
    }

    .bottom-container {
        flex-direction: column; 
        justify-content: space-between; 
        align-items: center; 
        padding: 20px; 
        padding-top: 30px;
    }
    
    .indexcontent1 {
        width: 80%;
    }
    .hero h1 {
        font-size: 40px; 
    }

    .hero-content {
        width: 80%
    }

    .content-index {
        width: 80%;
    }

    .content-home-user {
        width: 90%;
        padding: 0px;
        padding-top: 20px;
    }

    .content-home-other {
        width: 90%;
        padding: 0px;
        padding-top: 0px;
    }

    .tabcontent {
        margin: auto;
        padding: 0px;
    }

    .home-wrapper {
        padding: 0px;
    }

    
    .header-wrapper {
        width: 90%;
        margin: auto;
    }

    .chartandtable {
        padding: 0px;
        width: 90%;
        display: flex; 
        flex-direction: column;
        justify-content: flex-start; 
        
    }

    .charts2 {
        width: 90%;
        height: auto;
    }

    .loginform input {

        width:95%

    }
    .loginform textarea[name="message"] {
        width: 95%;

    }

    .tabs {
        width: 100%;
    }

    .tab-container {
        display: flex;
        justify-content: flex-start; /* Align tabs horizontally */
        margin-top: 5px; /* Adjust this if your header height changes */
        background-color: rgba(243, 244, 247, 0); /* Optional: background color to distinguish */
        padding: 0 5px; /* Add horizontal padding */
        border-bottom: 1px solid #cecece;
        margin-left: 0px;
        margin-right: 0px;
    }

    .navpush2{
        height: 130px;
    }

}