body {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    margin: 5px;
    padding: 10px;
  }
  
  form {
    margin: 10px 0;
    padding: 20px;
    border: 1px solid #ccc;
    border-radius: 8px;
    background-color: #f9f9f9;
  }
  
  h2 {
    color: #333;
  }
  
  input[type="file"] {
    margin-bottom: 10px;
  }
  
  button {
    padding: 10px 15px;
    background-color: #4caf50;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
  }
  
  button:hover {
    background-color: #45a049;
  }
  
  /* Style Login Page */
  .centered-container {
    text-align: center;
    justify-content: center;
    align-items: center;
    display: flex;
    flex-direction: column;
    height: 90vh;
  }

  .centered-container h1,
  .centered-container a {
    margin-top: 10px; /* Remove default margins */
  }
  .button {
    background-color: #6363f1;
    border: 2px solid #6363f1;
    border-radius: 26px;
    color: white;
    padding: 16px 32px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    margin: 4px 2px;
    transition-duration: 0.4s;
    cursor: pointer;
  }

  .button:hover {
    background-color: #555555;
    border: 2px solid #555555;
    color: white;
  }

  .login_button {
    width: 35%;
  }

  .formField {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 10px;
  }

  /* Table Style */

  /* #data-table {
  border-collapse: collapse;
  width: 98%;
  margin-top: 10px;
}


#data-table th {
  border: 1px solid #ddd;
  padding: 4px;
  text-align: center;
  overflow-wrap:anywhere;

}
#data-table td {
  border: 1px solid #ddd;
  padding: 4px;
  text-align: left;
  overflow-wrap:anywhere;
} */

/* Apply basic styling to the table */
#data-table {
  width: 100%;
  border-collapse: collapse;
  overflow-x: scroll;
}

/* Apply styling to table header cells */
#data-table th {
  background-color: #f2f2f2;
  border: 1px solid #ddd;
  padding: 8px;
  text-align: left;
  max-width: 60px;
  word-wrap: break-word;
}

/* Apply styling to table data cells */
#data-table td {
  border: 1px solid #ddd;
  padding: 8px;
  max-width: 60px;
  word-wrap: break-word;
}

/* Apply alternate background color to even rows */
#data-table tr:nth-child(even) {
  background-color: #f2f2f2;
}

.buttons-container {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
  /* padding-top: 20px; */
}

#export-button, button {
  margin-top: 10px;
  padding: 10px;
  font-size: 16px;
  cursor: pointer;
}

#export-button {
  background-color: #4CAF50;
  color: white;
  border: none;
  margin-right: 10px;
}

#export-to-excel {
  background-color: #008cba;
  color: white;
  border: none;
}

#export-to-excel:disabled {
  background-color: #aaaaaa; /* Adjust the color for a disabled look */
  color: #666666; /* Adjust the color for a disabled look */
  cursor: not-allowed;
  pointer-events: none; /* Disable pointer events to prevent hover effect */
}

.openAiForm {
  display: flex;
  flex-direction: column;
  max-width: 400px;
  margin-bottom: 10px;
}

.textAreaLabel {
  margin-bottom: 8px;
}

textarea {
  margin-bottom: 8px;
}

.getCsv[type="file"], button {
  margin-top: 8px;
}