.instructions {
    font-weight: italic;
    /*font-size: 1.0rem;*/
    font-size: 16px !important;
    color: black;
}

/* Set the font to Verdana */
body {
    font-family: Verdana, sans-serif;
    color: #066837;
}

header {
    background-color: #f7f7f7;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 8vh; /* Adjust the height to your desired value */
    padding-top: 3vh; /* Adjust the padding-top to create space */
}

.crop-header {
    width: 75%; /* Adjust the width as needed */
}

title {
    background-color: #8dc540;
    display: flex;
    justify-content: top;
    align-items: top;
    height: 20vh;
    font-size: 6rem;
    font-size: 6vw;
    font-family: Verdana, sans-serif;
}

.logo {
    display: flex;
    justify-content: center;
    align-items: center;
}

    .logo img {
        max-height: 100%;
        max-width: 100%;
        /*width:75%;*/
    }

.title {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-left: 1rem;
}

/* Adjust the background color of the page */
.page {
    display: flex;
    flex-direction: column;
    justify-content: flex-start; /* Updated */
    align-items: center;
    min-height: 100vh;
    /*padding: 2rem;*/
    margin-top: 20px;
}

.contents {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
}

/* Adjust the form width and spacing */
.form {
    /*  max-width: 400px;*/
    width: 100%;
    padding: 1rem;
    border-radius: 0.25rem;
    display: flex;
    flex-direction: column;
    justify-content: top;
    align-items: center;
    background-color: #fff;
}

/* Add a header bar to the form */
.form-header {
    background-color: #8dc540;
    color: #fff;
    /*font-weight: 500 !important;*/
    /* padding: 0.5rem;  Adjust the padding to your desired value */
    width: 100%;
    text-align: center;
    border-top-left-radius: 0.25rem;
    border-top-right-radius: 0.25rem;
    margin-top: 15px;
}

/* Adjust the form fields */
.form-field {
    margin-bottom: 1rem;
    width: 100%;
}

.form h1,
.form p {
    color: #066837;
}

.form label {
    display: inline-block;
    margin-bottom: 0.5rem;
    color: #066837;
}

.form input[type="tel"] {
    padding: 0.5rem;
    border: none;
    border-radius: 0.25rem;
    background-color: #f7f7f7;
    box-shadow: 0 0 0 2px #066837;
    transition: box-shadow 0.2s ease-in-out;
}

    .form input[type="tel"]:focus {
        outline: none;
        box-shadow: 0 0 0 2px #8dc540;
    }

/* Set the font color to green */
h1, h2, h3, h4, h5, h6, button, input[type="button"], input[type="submit"] {
    color: #066837;
}

/* Set the background color outside of the form to white */
body > header {
    background-color: #fff;
}

button,
input[type="button"],
input[type="submit"] {
    background-color: #066837;
    border: none;
    color: #fff;
    padding: 0.5rem 1rem;
    /*font-size: 1.2rem;*/
    border-radius: 0.25rem;
    cursor: pointer;
    transition: background-color 0.2s ease-out;
    margin-top: 1rem;
    margin-bottom: 1rem;
}

    button:hover,
    input[type="button"]:hover,
    input[type="submit"]:hover {
        background-color: #8dc540;
    }

    button:focus,
    input[type="button"]:focus,
    input[type="submit"]:focus {
        outline: none;
    }

button,
input[type="button"],
input[type="submit"],
.back-button {
    font-family: Verdana, sans-serif;
    font-weight: bold;
}

/* Style the back button */
.back-button {
    display: inline-block;
    margin-bottom: 1rem;
    font-size: 1.2rem;
    cursor: pointer;
    color: #066837;
}

    .back-button:hover {
        text-decoration: underline;
    }

/* Style the accordion */
.accordion {
    /* border: 1px solid #066837; */
    border-radius: 0.25rem;
    overflow: hidden;
    margin-bottom: 1rem;
    width: 100%;
}

.accordion-section {
    display: flex;
    /* align-items: center; */
    /* justify-content: space-between; */
    padding: 0.5rem;
    background-color: #066837;
    color: #fff;
    cursor: pointer;
}

    /* .accordion-section {
  background-color: #066837;
  color: #fff;
  padding-left: 1rem;
  margin-right: 0.5rem;
  margin-top: 0.5rem;  
  line-height: 1;
  text-transform: none;
  letter-spacing: normal;  
  word-wrap: normal;
  white-space: nowrap;
} */

    .accordion-section:hover {
        background-color: #00582b;
    }

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.2s ease-out;
    background-color: #f7f7f7;
    padding: 0.5rem;
    border-top: 1px solid #ccc;
}

.accordion-section.active + .accordion-content {
    max-height: 200px;
    overflow: auto;
    transition: max-height 0.2s ease-in-out;
}

.accordion-content.active {
    max-height: 200px;
    overflow: auto;
}

.accordion-section::before {
    font-family: "Material Icons";
    font-size: 24px;
    content: "\e5cf";
    display: inline-block;
    margin-right: 0.5rem;
    /* transform: rotate(0deg);
  transition: transform 0.2s ease-in-out; */
}

.accordion-section.active::before {
    transform: rotate(180deg);
    transition: transform 0.2s ease-in-out;
}

.accordion-icon {
    font-family: "Material Icons";
    font-size: 24px;
    content: "\e5cf";
    display: inline-block;
    margin-right: 0.5rem;
}

/*.accordion-icon.active {
  transform: rotate(180deg);
  transition: transform 0.2s ease-in-out;
}*/

.grid-list {
    display: table;
    width: 100%;
    table-layout: fixed;
}

.grid-list-header {
    display: table-cell;
    font-weight: bold;
    vertical-align: middle; /* add this line */
    padding: 0.5rem; /* add this line */
    border-bottom: 1px solid #ddd; /* add this line */
}


.grid-list-item {
    cursor: pointer;
    transition: background-color 0.2s ease;
    display: table-row;
}

.grid-list-item {
    position: relative;
    padding-left: 2rem;
}

    .grid-list-item i {
        position: absolute;
        left: 0.5rem;
        top: 50%;
        transform: translateY(-50%);
        color: #066837;
    }

    .grid-list-item:hover {
        background-color: #f7f7f7;
    }

    .grid-list-item:active {
        background-color: #e0e0e0;
    }

    /*.grid-list-item {
  display: table-row;
}*/

    .grid-list-item span {
        display: table-cell;
        padding: 0.5rem; /* add this line */
    }

    .grid-list-item > td {
        display: table-cell;
        padding: 0.5rem; /* add this line */
    }

/* @media only screen and (max-width: 768px) {
  header {
    height: 8vh;
    padding-top: 2vh;
  }
  .title {
    height: 12vh;
    font-size: 4vh;
  }
  .form {
    max-width: 90%;
  }
  button, input[type="button"], input[type="submit"] {
    font-size: 1rem;
    padding: 0.25rem 0.5rem;
  }
}

<meta name="viewport" content="width=device-width, initial-scale=1">

@media only screen and (max-width: 768px) {
  .accordion {
    max-width: 90%;
    margin-bottom: 0.5rem;
  }
  .accordion-section {
    padding: 0.5rem;
    margin: 0.5rem 0;
  }
}

@media only screen and (max-width: 768px) {
  .grid-list-item {
    display: block;
    margin-bottom: 0.5rem;
  }
  .grid-list-item span {
    display: block;
    padding: 0.25rem;
  }
}  */
a.logout {
    float: left;
    background: url(../images/ic-logout.png) center no-repeat;
    height: 60px;
    width: 60px;
    border-left: 1px solid #8b8d8f;
    display: block;
    transition: all 0.3s;
    -webkit-transition: all 0.3s;
}

    a.logout:hover {
        background-color: #686b6d;
    }

h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6 {
    font-weight: 600 !important;
    font-family: inherit;
    line-height: 1.1;
    padding: 0.5rem;
}

p {
    margin: 10 0 10 0;
}

h1, .h1 {
    font-size: 34px
}

button, input[type="button"], input[type="submit"] {
    font-size: 19px;
}

.logoutbtn {
    font-size: 29px;
    margin-right: 19px;
    color: #066837 !important;
}

.f_size_16 {
    font-size: 16px;
}

.font_color {
    color: #066837;
}

.th_Product_width {
    width: 65%;
}

.th_Rate_width {
    width: 35%;
}
