
/* Styling for the cover image */
.cover-image {
    background-size: cover;
    height: 100vh; /* Adjust as needed for your design */
}

.info-box {
    background-color: rgba(255, 255, 255, 0.8); /* Semi-transparent white background */
    width: 40%; /* Adjust the width as needed */
    padding: 20px;
    position: absolute;
    top: 50%;
    left: 20%; /* Adjust the left position as needed */
    transform: translate(-30%, -50%);
    border: 2px solid #00f2ff; /* Add a border around the box */
    border-radius: 4px; /* Add rounded corners */
}

.app-title {
    font-size: 36px; /* Increase font size for the title */
    margin-bottom: 10px; /* Add some spacing below the title */
}

.description {
    font-size: 18px; /* Font size for the description */
    margin-bottom: 20px; /* Add spacing below the description */
}

.get-started-button {
    background-color: #007BFF; /* Change the color to your preference */
    color: #fff;
    padding: 15px 30px; /* Increase button padding for a larger button */
    border: none;
    cursor: pointer;
    border-radius: 5px; /* Add rounded corners to the button */
}

/* Add styles for the Data page */

.data-page {
    background-color: #FFFFFF; /* Set background color to white */
    height: 100vh; /* Set the height to 100% of the viewport height */
    display: flex; /* Use flexbox to center content vertically and horizontally */
    flex-direction: column; /* Arrange content in a column */
    justify-content: flex-start; /* Align content to the top of the page */
    align-items: flex-end; /* Align content to the right side of the page */
}

.header {
    display: flex; /* Use flexbox to arrange logo and title side by side */
    justify-content: space-between; /* Create space between logo and title */
    align-items: center; /* Center content vertically */
    padding: 20px; /* Add padding for spacing */
}

.logo {
    width: 100px; /* Set the width of the logo */
    height: auto; /* Maintain aspect ratio */
}

.page-title {
    font-size: 24px; /* Set the font size for the page title */
    margin-left: 20px; /* Add margin to the left of the title for spacing */
}



/* Style the back button */
.back-button {
    background-color: #007BFF;  /* Button background color */
    color: #fff;  /* Text color */
    border: none;
    border-radius: 4px;
    padding: 10px 20px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.section {
    float: left;
    background-color: rgba(255, 255, 255, 1);
    border-radius: 5px;
    box-shadow: 2px 2px 5px lightgray;
    padding: 10px;
    height: 50px;
    margin-top: 8px;
}

.section-1 {
    width: 18.2%;
}

.section-2 {
    width: 0.5%;
    height: 70px;
}

.section-3 {
    width: 18%;
}

.section-4 {
    width: 18%;
}

.section-5 {
    width: 18%;
}

.section-heading {
    color: rgb(0, 0, 128);
    font-size: 13px;
    margin-right: 10px;
    margin-top: 430px;
}

.upload-component {
    width: 38%;
    height: 5px;
    line-height: 3px;
    text-align: center;
    margin: 5px;
    background-color: rgb(229, 228, 226);
    border-style: solid;
    border-width: 0.00001px;
    border-color: rgb(169, 169, 169);
    padding: 9px;
    box-shadow: 2px 2px 5px lightgray;
    margin-top: 8px;
}

.upload-button {
    color: black;
    font-size: 13px;
    margin-left: 15px;
    margin: 5px;
}

.file-name-output {
    width: 140%;
    font-size: 12px;
    margin-left: 80px;
    margin-top: -16px;
    color: rgb(0, 71, 171);
    font-style: italic;
}

.dropdown-component {
    color: black;
    font-size: 11px;
    margin-right: 10px;
    margin-top: -5px;
}

.radio-input-container, .input-container {
    display: inline;
    vertical-align: middle;
}


.offcanvas.open {
            display: block;
            transform: translateX(0);
        }

.offcanvas-content {
    padding: 20px;
}

.offcanvas-link {
    display: block;
    margin-bottom: 10px;
}

.btn-close {
    margin-top: 20px;
}
    







