body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background-color: #f2f2f2;
  color: #333;
}

table {
  width: 100%;
  margin: 0 auto;
  border-collapse: collapse;
}

th,
td {
  padding: 4px;
  border: 0px solid #fff;
  color: #333;
}

td:nth-child(1) {
  width: 80%;
}

td:nth-child(2) {
  width: 20%;
}

td input {
  width: 100%;
  box-sizing: border-box;
}

td select {
  width: 100%;
  box-sizing: border-box;
}

h1,
h2,
h3 {
  color: #333;
  margin-bottom: 20px;
}

h1 {
  font-size: 28px;
}

h2 {
  font-size: 24px;
}

h3 {
  font-size: 20px;
}

p {
  color: #777;
  font-size: 16px;
  line-height: 1;
}

form {
  display: flex;
  flex-direction: column;
  align-items: center;
}

label {
  color: #333;
  font-size: 16px;
  margin-bottom: 8px;
}

select,
input[type="text"],
input[type="password"],
input[type="email"],
input[type="number"],
input[type="date"] {
  padding: 8px;
  margin: 4px auto;
  border: none;
  border-radius: 8px;
  background-color: #e6e6e6;
  font-size: 14px;
  color: #333;
  width: 100%;
  max-width: 400px;
}

select:focus,
input[type="text"]:focus,
input[type="password"]:focus,
input[type="email"]:focus,
input[type="number"]:focus,
input[type="date"]:focus {
  outline: none;
  background-color: #f7f7f7;
}

input[type="checkbox"] {
  margin-right: 8px;
}

button {
  padding: 10px 20px;
  background-color: #007bff;
  margin: 2px;
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
}

button:hover {
  background-color: #0056b3;
}

textarea {
  width: 100%;
  margin: 10px auto;
}

.container {
  width: 500px;
  max-width: 500px;
  background-color: #fff;
  margin: 10px auto;
  padding: 10px;
  text-align: relative;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
}

.wrapper {
  position: relative;
  width: 400px;
  height: 200px;
  margin: 20px auto;
  -moz-user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.signature-pad {
  position: absolute;
  left: 0;
  top: 0;
  width: 400px;
  height: 200px;
  border-radius: 12px;
  border: 2px solid rgb(230, 230, 230);
  background-color: #fff;
}

.svg-container {
  width: 100%;
  height: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.center-align {
  margin: 0px;
  padding: 0px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.center-box {
	text-align: center;
}

.popup{
    background-color: #ffffff;
    width: 500px;
    padding: 20px;
    position: absolute;
    transform: translate(-50%,-50%);
    left: 50%;
    top: 50%;
    border-radius: 8px;
    display: none;
    text-align: center;
	border-radius: 8px;
	box-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
}

.popup button{
    display: block;
    margin:  0 0 10px auto;
    background-color: transparent;
    font-size: 30px;
    color: #c5c5c5;
    border: none;
    outline: none;
    cursor: pointer;
}

.popup p{
    font-size: 14px;
    text-align: justify;
    margin: 10px 0;
    line-height: 25px;
}
