canvas {
    border: #0050E2 1.2px solid;
    border-radius: 1px; /* Optional: Rounded corners */
    /*width: 97%;*/
    width: 405px;
    margin-left: 245px;
    height: 150px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Optional: Add shadow for a subtle effect */
}
/* General button styling */
.signature-button {
    margin-top: 10px;
    margin-right: 5px;
    padding: 10px 20px;
    width: 180px;
    font-size: 14px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.signature-label{
    background-color:  #ffffFF;
    font-family:Verdana, Arial, Helvetica, sans-serif;
    margin-bottom: 9px;
    font-size: 1.3em;
    display: inline-block;

    color: #0050E2;
    font-weight: bold;
}

.signature-label-comment {
    font-style: italic;
    font-size: 1em;
    float: right;
    margin-right: 50px;
    color: #0050E2;
}
.signature-label-text {
    font-style: italic;
    font-size: 1em;
    text-align: right;
    /*float: right;*/
    margin-right: 50px;
    color: #0050E2;
}

/* Clear button specific styling */
#clear-button {
    /*background-color: #28a745; !* Green *!*/
    background-color: #429AFF; /* blue */
    color: black;
    margin-right: 55px;
    width: 140px;
    font-size: 14px;
    border-radius: 7px;
}

.signature-image {
    border: 1.2px solid #0050E2;
    border-radius: 1px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

#clear-button:hover {
    background-color: #2ee009; /* Darker green */
}

/* Save button specific styling */
#save-button {
    /*background-color: #429AFF;*/
    background-color: #b81886;
    width: 140px;
    color: white;
    margin-right: 25px;
    border-radius: 7px;
}

#save-button:hover {
    background-color: #2ee009; /* Darker green */
}

.signature-controls {
    margin-top: 10px;
    margin-right: 15px;
    text-align: right; /* Center buttons */
}

.signature-controls button {
    display: inline-block;
    margin: 5px; /* Space between buttons */
}