.SignaturePad__overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
}

.SignaturePad__modal {
  background: white;
  border-radius: 8px;
  padding: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.SignaturePad__title {
  margin: 0 0 12px 0;
  font-size: 16px;
  font-weight: 600;
  color: #333;
}

.SignaturePad__canvas {
  display: block;
  border: 1px solid #ccc;
  border-radius: 4px;
  cursor: crosshair;
  touch-action: none;
  background: white;
}

.SignaturePad__buttons {
  display: flex;
  gap: 8px;
  margin-top: 12px;
  justify-content: flex-end;
}

.SignaturePad__button {
  padding: 8px 16px;
  font-size: 14px;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.2s, border-color 0.2s;
}

.SignaturePad__button--clear {
  background: white;
  border: 1px solid #ccc;
  color: #666;
}

.SignaturePad__button--clear:hover {
  background: #f5f5f5;
  border-color: #999;
}

.SignaturePad__button--cancel {
  background: white;
  border: 1px solid #ccc;
  color: #666;
}

.SignaturePad__button--cancel:hover {
  background: #f5f5f5;
  border-color: #999;
}

.SignaturePad__button--done {
  background: #2196f3;
  border: 1px solid #2196f3;
  color: white;
}

.SignaturePad__button--done:hover {
  background: #1976d2;
  border-color: #1976d2;
}
