.btn{
    margin: 4px;
}

.float-right{
    float: right;
}

/* Styles for select2 */
.select2-results{
    background-color: #3a4952;
}
.select2-container--default .select2-selection--multiple{
    background-color: transparent;
}
.select2-container{
    background-color: transparent;
}
.select2-container--default .select2-selection--single{
    background-color: transparent;
}
.select2-container--default .select2-selection--single .select2-selection__rendered{
    color: white;
}
.select2-container--default .select2-selection--multiple .select2-selection__choice__display{
    color: black;
}

/* Styles for webcam capture */
.webcam-capture-container {
    max-width: 640px;
    height: auto;
    width: auto;
    aspect-ratio: 4/3;
    position: relative;
    background: #000000;
}
.webcam-capture-box {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 1.0;
    z-index: 9;
}


/* styles for sign document */
.modal-content {
    height: 100vh;
    width: 100%;
    margin: 0;
    padding: 32px 16px;
    font-family: Helvetica, Sans-Serif;
}
.signature-pad-canvas {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    border-radius: 4px;
    aspect-ratio: 300/150;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.02) inset;
}
.signature-pad-footer {
    text-align: center;
    font-size: 1.2em;
    margin-top: 8px;
}
.bold-label {
    font-weight: bold;
    font-size: 1.2em;
}
/* for pdf */
.pdf-section {
    position: relative;
    width: 100%;
    height: 100%;
}
.pdf-layer {
    position: absolute;
    left: 0;
    top: 0;
    z-index: 1;
    opacity: 1.0;
}
.buttons-layer {
    position: absolute;
    left: 0;
    top: 0;
    z-index: 2;
    opacity: 1.0;
/* background: blue; */
}