/* Фіксація проблем з підписом */
.signature-fix-container {
    border: 2px solid #0073aa;
    background-color: #fff;
    border-radius: 4px;
    margin: 10px 0;
    padding: 10px;
    min-height: 200px;
    position: relative;
}

.signature-canvas {
    width: 100%;
    height: 200px;
    cursor: crosshair;
    border: 1px dashed #ccc;
    background-color: #f9f9f9;
}

.signature-buttons {
    margin-top: 10px;
    text-align: right;
}

.signature-clear-btn {
    padding: 5px 15px;
    background-color: #f5f5f5;
    border: 1px solid #ccc;
    border-radius: 3px;
    cursor: pointer;
    font-size: 14px;
}

.signature-clear-btn:hover {
    background-color: #e5e5e5;
}

.signature-label {
    font-weight: bold;
    margin-bottom: 5px;
    display: block;
}

/* Убедимся, что наш канвас имеет приоритет */
canvas.signature-canvas {
    touch-action: none;
    -ms-touch-action: none;
    display: block !important;
    max-width: 100%;
}

/* Responsive adjustments for landscape orientation */
@media screen and (orientation: landscape) and (max-width: 1024px) {
    .signature-fix-container {
        min-height: auto;
    }
    
    .signature-canvas {
        max-height: 60vh;
        aspect-ratio: 1/1; /* Make it square in landscape */
    }
    
    canvas.signature-canvas {
        max-height: 60vh !important;
    }
}
