body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background-color: #f4f4f9;
}

.header {
  text-align: center;
  background-color: #333;
  color: #fff;
  padding: 20px;
}

.container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 20px;
  padding: 20px;
}

.tile {
  background-color: #fff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  text-align: center;
  cursor: pointer;
  transition: transform 0.3s, box-shadow 0.3s;
}

.tile:hover {
  transform: scale(1.1);
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
}

.tile img {
  width: 64px;
  height: 64px;
  margin-bottom: 10px;
}

.tile h3 {
  font-size: 16px;
  margin: 0;
}

/* #fileUploadSection {
  display: none;
  text-align: center;
  margin-top: 20px;
} */

#fileInput {
  margin-bottom: 5px;
}

#convertBtn {
  padding: 5px 5px;
  font-size: 16px;
  background-color: #333;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

#convertBtn:hover {
  background-color: #555;
}
#actionText {
  font-weight: bold;
}


#fileUploadSection {
  display: none;
  text-align: center;
  margin-top: 5px;
  padding: 5px;
  border: 2px solid #4CAF50;  /* Green border */
  border-radius: 10px;
  background-color: #f9f9f9;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  width: 50%;
  margin-left: auto;
  margin-right: auto;
}

#fileUploadSection .action-text {
  font-size: 20px;
  font-weight: bold;
  color: #333;
  margin-bottom: 5px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

#fileUploadSection .file-input {
  display: none; /* Hide default file input */
}

#fileUploadSection .file-input-label {
  display: inline-block;
  padding: 5px 5px;
  font-size: 18px;
  color: #fff;
  background-color: #4CAF50;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  width: 20%;
  margin-bottom: 5px;
  text-align: center;
}

#fileUploadSection .file-input-label:hover {
  background-color: #45a049;
}

#fileUploadSection .file-input-label:active {
  background-color: #3e8e41;
}

#fileUploadSection .convert-btn {
  padding: 5px 5px;
  font-size: 18px;
  color: #fff;
  background-color: #4CAF50;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  width: 20%;
}

#fileUploadSection .convert-btn:hover {
  background-color: #45a049;
}

#fileUploadSection .convert-btn:active {
  background-color: #3e8e41;
}

body {
  font-family: Arial, sans-serif;
  background-color: #f4f4f9;
}


/* Style for the Sign PDF page */
.sign-container {
  text-align: center;
  margin-top: 50px;
}

#signatureCanvas {
  border: 2px solid black;
  background-color: #f0f0f0;
}

.button-group {
  margin-top: 20px;
}

button {
  padding: 10px 20px;
  font-size: 16px;
  cursor: pointer;
  margin: 10px;
}

button:hover {
  background-color: #f1f1f1;
}

h2 {
  font-size: 24px;
  margin-bottom: 20px;
}
