:root{
    --primary: rgb(160,109,242);
    --btn-prim: rgb(204,109,242);
    --btn-hover: rgb(242,109,233);
}

/* Reset de estilos para garantir uma base consistente */
body, h1, h2, p, ul, li, form, button, input, textarea {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    color: #333;
    background-color: #A06DF2 !important;
}

hr{
    display: none;
}
.website-logo {
    flex-shrink: 0;
    margin-bottom: 50px;
    margin-top: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.website-logo img {
    width: 150px;
    height: auto;
    max-height: 70%;
}
.infos {
    width: fit-content;
    max-width: 1603px;
    margin: 10px auto; /* Margem superior e inferior de 10px e margem lateral automática */
    padding: 20px; /* Adicione o preenchimento desejado */
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
form {
    display: flex;
    flex-direction: column;
}
.saia {
    position: fixed;
    top: 10px;
    right: 10px;
    background-color: var(--btn-prim);
    color: #fff;
    padding: 10px 15px;
    text-decoration: none;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}
.saia:hover {
    background-color: var(--btn-hover);
}
input, textarea, select {
    margin-bottom: 15px;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    width: 100%;
}
button {
    background-color: var(--btn-prim);
    color: #fff;
    padding: 10px 15px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    border-radius: 5px;
}
button:hover {
    background-color: var(--btn-hover);
}
/* Add these new styles for the popup animation */
/* Add these styles to the end of your CSS file */

/* Popup styling for smooth animations */
.popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    display: none;
    opacity: 0;
}

.popup .content-info {
    position: relative;
    background: white;
    width: 90%;
    max-width: 800px;
    margin: 5vh auto;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    max-height: 90vh;
    overflow-y: auto;
}

.popup .close {
    position: absolute;
    right: 15px;
    top: 10px;
    font-size: 24px;
    cursor: pointer;
    color: #666;
    transition: color 0.3s;
}
.popup .close:hover {
    color: var(--btn-hover);
}
.popup.active {
    opacity: 1;
}
.popup.active .content-info {
    transform: translateY(0);
    opacity: 1;
}
.flex-row {
    flex-direction: row; /* Alterado para coluna para empilhar os elementos verticalmente */
}
canvas#signature-pad {
    background: #fff;
    width: 300PX;
    height: 150px;
    cursor: crosshair;
}

/* Adicione mais estilos conforme necessário */
@media screen and (max-width: 768px) {
    .website-logo {
        margin-bottom: 10px;
    }
}



/* Adicione estilos CSS conforme necessário */
table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
    border-radius: 9px;
}
.table-buttons {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: start;
    gap: 10px;
}



th, td {
    text-align: left;
    padding: 8px;
    width: 100%;
    border: #4b00ff;
}


.titulos-esquerda{
    border-radius: 0.5em 0em 0em 0.5em;
}
.titulos-ult-procedimento{
    border-radius: 0em 0.5em 0.5em 0em;
}
.servicos{
    border-radius: 0.5em 0em 0em 0.5em;
}
.assiantura{
    border-radius: 0em 0.5em 0.5em 0em;
}
.titulos{
    background-color: var(--btn-prim);
    border-radius: 0.5em 0em 0em 0.5em;
    color: white;
}
.titulos_abaixo{
    display: block;
}
.adicionar_sessao{
    margin-bottom: 10px;
}
.informacoes_cliente{
    color:red;
    margin: 100px;
}
.section{
    margin-left: 15px;
}
.fotos_procedimento{
    width: 10px;
    max-width: 100px;
}
img {
    width: 200px;
    
}


