/* Signature Pad Styles */
.signature-container {
    border-radius: 12px;

}

.signature-pad {
    background: #ededed;
    cursor: crosshair;
    touch-action: none;
    display: block;
    width: 100%;
    max-width: 500px;
    /* Prevent dragging */
    -webkit-user-drag: none;
    -khtml-user-drag: none;
    -moz-user-drag: none;
    -o-user-drag: none;
    user-drag: none;
    /* Prevent selection */
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    /* Prevent image context menu */
    -webkit-touch-callout: none;
}

#signature-canvas-container {
    border: 1px solid #a1a1a1;
    border-radius: 3px;
    overflow: hidden;
}

.signature-header {
    background: #919191;
    color: white;
    padding: 2px 12px;
}

.signature-pad:hover {
    border-color: #1565c0;
    box-shadow: 0 0 0 0.2rem rgba(12, 72, 108, 0.25);
}

.signature-controls {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-top: 1rem;
}

.signature-preview {
    max-width: 300px;
    border: 1px solid #dee2e6;
    border-radius: 4px;
    background: white;
    margin: 1rem 0;
    display: none;
}


.pen-settings {
    background: white;
    border: 1px solid #dee2e6;
    border-radius: 8px;
    padding: 1rem;
    margin-bottom: 1rem;
}

.color-picker {
    width: 40px;
    height: 40px;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    margin: 0 0.25rem;
}

.size-slider {
    width: 150px;
}

.signature-status {
    margin-top: 1rem;
    font-weight: 500;
}

.signature-status.signed {
    color: #198754;
}

.signature-status.empty {
    color: #6c757d;
}