body {
  font-family: Arial, sans-serif;
  text-align: center;
}

header {
  background-color: #33adff;
  color: white;
  border-radius: 10px;
}

form {
  width: 400px;
  margin: 50px auto;
  border: 1px solid #ccc;
  border-radius: 10px;
  padding: 20px;
  text-align: left;
  border-radius: 10px;
}

form h2 {
  text-align: center;
}

label {
  display: block;
  margin-top: 10px;
}

input {
  width: 100%;
  padding: 10px;
  margin-bottom: 10px;
  box-sizing: border-box;
  border-radius: 10px;
  border: 1px solid #ccc;
  font-size: 16px;
}

input[readonly] {
  color: #888;
}


button {
  width: 200px;
  padding: 10px;
  margin-top: 20px;
  background-color: #33adff;
  border-radius: 10px;
  margin-top: 20px;
  border: 1px solid #ccc;
}

/* Center buttons in the form */
form button {
  margin: 0 auto;
  display: block;
  margin-top: 20px;
  border: 1px solid #ccc;
  border-radius: 10px;
}

select {
  height: 42px;
  width: 100%;
  box-sizing: border-box;
  border-radius: 10px;
  border: 1px solid #ccc;
}

textarea {
    width: 95%;
    height: 100px;
    border-radius: 10px;
    resize: none;
    font-family: Arial, sans-serif;
    font-size: 16px;
}

.greyed-out {
  color: #999; /* or any other color you prefer for greyed out text */
}

    .table-container {
      max-height: 500px; /* Set a maximum height for the container */
      overflow-y: scroll; /* Enable vertical scrolling */
    }

    table {
      width: 95%;
      border-collapse: collapse;
      margin: 20px;
    }
    th, td {
      border: 1px solid #dddddd;
      text-align: left;
      padding: 8px;
    }
    th {
      position: sticky;
      top: 0;
      background-color: #ccffff;
    }

        .center-table {
            margin: 0 auto;
            border-collapse: collapse;
            border: none;
        }
        .center-table td, .center-table th {
            margin: 0 auto;
            border: none;
        }


.width-95 {
    width: 95%;
    max-width: 100%; /* Ensure the form doesn't exceed the container's width */
}

.width-75 {
    width: 75%;
    max-width: 100%; /* Ensure the form doesn't exceed the container's width */
}

.width-50 {
    width: 50%;
    max-width: 100%; /* Ensure the form doesn't exceed the container's width */
}

.width-40 {
    width: 40%;
    max-width: 100%; /* Ensure the form doesn't exceed the container's width */
}

.width-75 {
    width: 75%;
    max-width: 100%; /* Ensure the form doesn't exceed the container's width */
}

.width-25 {
    width: 25%;
    max-width: 100%; /* Ensure the form doesn't exceed the container's width */
}

    .wrap-text {
      word-wrap: break-word;
      max-width: 50px; /* adjust the max-width as needed */
    }

.even-row {
  background-color: #ffffff; /* or any other color for even rows */
}

/* Optional: Apply different styling for odd rows */
.odd-row {
  background-color: #f0f0f0; /* or any other color for odd rows */
}

    .icon {
        width: 50px;
        height: 50px;
    }

    .red-asterisk {
        color: red;
    }


    nav {
        background-color: #33adff;
        border-radius: 10px;
    }
    ul {
        list-style-type: none;
        margin: 0;
        padding: 0;
        overflow: hidden;
    }
    li {
        float: left;
    }
    li a {
        display: block;
        color: white;
        text-align: center;
        padding: 14px 16px;
        text-decoration: none;
    }
    li a:hover {
        background-color: #111;
    }

