.navbar-item img {
    max-height: 100%;
}

.disable-dbl-tap-zoom {
    touch-action: manipulation;

}

.modal {
    overflow: visible !important;
    z-index: 5 !important;
}

.aa-Panel {
    z-index: 10 !important;
    border-radius:20px;
}
.aa-Form {
    border-radius:20px;
}

.aa-DetachedSearchButton {
    border-radius:20px;
}

.swal2-modal {
    border-radius:20px;
}

@media (min-width: 1024px) {
    .modal-card {
        width: 80%;
    }
}

.list-item.dragging {
    opacity: 0.5;
}

.dropzone {
    background: white;
    border-radius: 20px;
    border: 4px dashed rgb(0, 135, 247);
    font-weight: 700; font-size: 2rem; color: #222;
    border-image: none;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
}

.progress-container:before {
    content: attr(data-text);
    position: absolute;
    left: 0;
    right: 0;
    top: 3px;
    line-height: 1em;
    font-weight: bold;
}

.progress-container {
    text-align: center;
    position: relative;
}

tr {
    border-radius: 20px;
    border: 2px solid rgb(0, 135, 247);
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.8); /* Cor de fundo semi-transparente */
    backdrop-filter: blur(10px); /* Efeito de desfoque */
    z-index: 9999; /* Certifique-se de que o overlay esteja acima do conteúdo */
    display: flex;
    justify-content: center;
    align-items: center;
}

.spinner {
    background-image: linear-gradient(rgb(186, 66, 255) 35%, rgb(0, 225, 255));
    width: 100px;
    height: 100px;
    animation: spinning 1.7s linear infinite;
    text-align: center;
    border-radius: 50px;
    filter: blur(1px);
    box-shadow: 0px -5px 20px 0px rgb(186, 66, 255), 0px 5px 20px 0px rgb(0, 225, 255);
    position: absolute;
    top: 50%;
    left: 50%;
    margin-left: -50px;
    margin-top: -50px;
    background-size: 100%;
    z-index: 10000;
}

@keyframes spinning {
    to {
        transform: rotate(360deg);
    }
}

.tabs-content li {
    display: none;
    list-style: none;
}

.tabs-content li.is-active {
    display: block;
}

.signature-canvas {
    touch-action: none;          /* Bloqueia gestos iOS como zoom/scroll seletivo */
    -webkit-user-select: none;   /* Desabilita seleção no Safari */
    -webkit-touch-callout: none; /* Esconde menu copiar/colar no iOS */
    user-select: none;
    -ms-touch-action: none;      /* Compatibilidade extra */
}