﻿.signature-pad-container {
    border: 1px solid #dee2e6;
    border-radius: 8px;
    padding: 1rem;
    background-color: #f8f9fa;
    max-width: 500px;
    margin: 0 auto;
}

.signature-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.signature-header h4 {
    margin: 0;
    color: #495057;
}

.signature-actions {
    display: flex;
    gap: 0.5rem;
}

.signature-canvas-container {
    position: relative;
    border: 2px dashed #ced4da;
    border-radius: 6px;
    background-color: white;
    cursor: crosshair;
    touch-action: none;
}

.signature-canvas {
    display: block;
    border-radius: 4px;
}

.signature-placeholder {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #6c757d;
    pointer-events: none;
}

.signature-placeholder i {
    font-size: 2rem;
    display: block;
    margin-bottom: 0.5rem;
}

.signature-footer {
    text-align: center;
    margin-top: 0.5rem;
}

.signature-controls {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.svg-preview {
    border: 1px solid #dee2e6;
    padding: 1rem;
    background-color: white;
    border-radius: 4px;
    max-height: 200px;
    overflow: auto;
    margin-bottom: 1rem;
}

.svg-textarea {
    font-family: 'Courier New', monospace;
    font-size: 0.875rem;
    background-color: #f8f9fa;
}

.output-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}

.output-header h5 {
    margin: 0;
}