/* CSS for the progressMessage div by ID */
#pleaseWaitMessage {
    background-color: #4CAF50; /* Background color */
    color: white; /* Text color */
    padding: 10px; /* Padding around the content */
}

/* Apply styles to the error container */
.error-container {
    text-align: center;
    margin-top: 100px;
    background-color: #f5f5f5;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

/* Style the heading */
.error-container h1 {
    color: #ff0000; /* Red color for the heading */
}

/* Style the paragraphs */
.error-container p {
    font-size: 18px;
    line-height: 1.5;
    margin-top: 15px;
}

/* Add some spacing to the top */
.error-container p:first-child {
    margin-top: 0;
}

input.largecheckbox {
    transform: scale(3);
    margin: 5px;
}

#countdown {
   text-align: center;
   font-size: 25px;
   padding: 0px;
   font-style: italic;
}

input.docx {
    transform: scale(2.1);
    margin-top: 20px;
}


* {
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-color: #fff;
    padding: 20px;
    color: #454545;
}

a {
    color: #454545;
    text-decoration: none;
}

table {
    border: 0px solid;
    table-layout: fixed;
    border-collapse: collapse;
}

table td {
    text-align: left;
    padding: 13px;
    vertical-align: top;
    box-sizing:border-box;
}


h1 {
  color: #ffffff;
  background-color: #454545;
  font-size: 24px;
  margin-bottom: 20px;
  padding: 10px 20px;
  text-align: center;
}

h2 {
  color: #ffffff;
  background-color: #454545;
  /*width: calc(100% - 20px);*/
  font-size: 18px;
  margin-top: 20px;
  margin-bottom: 10px;
  margin-left: 0px;
  margin-right: 0px;
  padding: 10px 10px;
  text-align: center;
}

/* Style the container */
.link-container {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

/* Style the textarea container */
textarea {
    abox-sizing: border-box;
    width: 100%;
    margin: 0px;
    padding: 5px;
    font-family: Arial, sans-serif;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 5px;
    resize: vertical;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: border-color 0.4s, box-shadow 0.4s;
}

textarea:focus {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    border: 2px solid #ccc;
    outline: none;
}

.submit-button {
  background-color: #f5f2ef;
  color: black;
  border: 3px solid black;
  padding: 10px 20px;
  font-size: 16px;
  border-radius: 5px;
  transition: background-color 0.3s ease, transform 0.2s ease;
  font-size: 20px;
  padding: 12px 22px;
  margin: 20px 13px;
}

.submit-button:hover {
  cursor: pointer;
  background-color: black;
  color: white;
  transform: scale(1.06);
}

/* Apply background color to even rows */
.zebra-tr:nth-child(even) td {
  background-color: #f5f2ef;
}

/* Define background color for odd rows (optional) */
.zebra-tr:nth-child(odd) td {
  background-color: #ffffff;
}

table.personal-info-table {
  border-collapse: collapse;
  background-color: #f5f2ef;
  margin: 20px 13px;
  padding: 30px;
  max-width: 600px;
  min-width: 400px;
  display: flex;
  border: 3px solid black;
  flex-direction: column;
  justify-content: center;
  align-items: stretch;
}

table.personal-info-table td {
    width: 100%;
    align-text: left;
}

/* Apply a fixed width to the table */
.cases-table {
    width: 100%;
    border-collapse: collapse; /* Merge table borders */
    border-spacing: 0;
    border: 1px solid black;
}

.cases-table th {
    background-color: #454545;
    color: white;
    text-align: left;
    border: 1px solid black;
    padding: 8px;

}

/* Style the table rows */
.cases-table td {
    text-align: left;
    border: 1px solid black;
    padding: 8px;
}

/* Custom text input style */
.custom-input {
  padding: 10px;
  font-size: 16px;
  border: 1px solid #ccc;
  border-radius: 5px;
  background-color: #f9f9f9;
  color: #333;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  transition: border-color 0.4s, box-shadow 0.4s;
}

.custom-input:disabled {
  background-color: #e5e5e5;
}

.custom-input:focus {
  outline: none;
  border-color: #007bff;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* Custom text input style */
input.date-picker {
  padding: 10px;
  font-size: 16px;
  border: 1px solid #ccc;
  border-radius: 5px;
  background-color: #f9f9f9;
  color: #333;
  transition: border-color 0.3s, box-shadow 0.3s;
}
