/* Filament Signature Pad Styles */

.filament-signature-modal {
    position: fixed;
    inset: 0;
    z-index: 50;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(0, 0, 0, 0.75);
}

.filament-signature-modal-content {
    width: 95vw;
    height: 95vh;
    display: flex;
    flex-direction: column;
    border-radius: 0.5rem;
    overflow: hidden;
}

.filament-signature-canvas-wrapper {
    flex: 1;
    position: relative;
    overflow: hidden;
}

.filament-signature-canvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    touch-action: none;
}

.filament-signature-preview {
    cursor: pointer;
    border: 2px dashed;
    border-radius: 0.5rem;
    transition: all 0.2s ease;
}

.filament-signature-preview:hover {
    border-style: solid;
}

.filament-signature-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 2rem;
    cursor: pointer;
    border: 2px dashed;
    border-radius: 0.5rem;
    transition: all 0.2s ease;
}

.filament-signature-placeholder:hover {
    border-style: solid;
}
