.text {
    background-image: url('camo.jpg');
    background-clip:text;
    -webkit-background-clip:text;
    color:transparent;
}

.signature-modal-overlay {
    @apply fixed inset-0 bg-black/50 backdrop-blur-sm;
  }
  
  .signature-modal-content {
    @apply bg-white rounded-lg shadow-xl transform transition-all;
  }
  
  @media (max-width: 640px) {
    .signature-modal-content {
      @apply fixed bottom-0 left-0 right-0 rounded-t-lg;
    }
  }