#id_e_signature {
    position: relative;
    margin-top: 10px; /* Push it down */
    z-index: 1; /* Lower priority */
}
canvas[id^="signatureCanvas"] {
  width: 100%;
  max-width: 400px;
  border: 1px solid #ccc;
  background: white;
  touch-action: none;
  pointer-events: auto;
  display: block;
  margin: 0 auto;
  position: relative;
  z-index: 9999;
}


/* Signature Canvas Styles */
#signatureCanvas {
    width: 100%; /* Responsive! */
    max-width: 400px; /* Limit width on large screens */
    height: auto;

    border: 1px solid #ccc;
    background: white;
    touch-action: none;
    pointer-events: auto;
    display: block;
    margin: 0 auto;
    position: relative;
    z-index: 9996; /* Ensure it's above everything */
}

#signature-preview {
    transition: opacity 0.3s ease;
}

/* Fix modal layout */
.modal-body {
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Button Styling */
#clearSignature {
    margin-top: 10px;
    background-color: #f8f9fa;
    border-color: #ddd;
    color: #000;
    transition: all 0.2s;
}

#clearSignature:hover {
    background-color: #e9ecef;
    border-color: #ccc;
}

/* Ensures modal buttons are consistent */
.modal-footer .btn {
    min-width: 100px;
}