/* inicio */
*{
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
}
.fa-search, .fa-pencil, .fa-trash, .fa-bell-slash, .fa-eye, .fa-eye-slash, .fa-rotate-left, .fa-palette, .fa-arrow-left, .fa-crosshairs, .fa-file-pen, .fa-file{
    color:#a2bcc9ff;
}
.fa-times, .fa-plus, .fa-check, .fa-square-check, .fa-dollar, .fa-clipboard, .fa-ban, .fa-paintbrush, .fa-calendar-plus, .fa-lock, .fa-image, .fa-user-doctor{
    color:#a2bcc9ff;
}
.fa-user, .fa-sack-xmark, .fa-syringe, .fa-cubes, .fa-prescription-bottle-medical, .fa-calendar-days, .fa-calendar-xmark, .fa-close, .fa-clock, .fa-book-medical{
    color:#a2bcc9ff;
}

.icons{
    color:#a2bcc9ff;  
}
.icons2{
    color:white;  
    margin-right: 10px; /* ajusta o valor conforme desejar (8–12px é ideal) */
    width: 18px;        /* garante alinhamento uniforme entre ícones */
    text-align: center; /* centraliza ícones menores */
}
/* ---------------------- MENU NOVO */

/* ---------- Botão do menu no mobile ---------- */
.menu-toggle {
  display: none;
  position: fixed;
  top: 15px;
  left: 15px;
  background: #a2bcc9ff;
  color: white;
  border: none;
  padding: 10px 14px;
  font-size: 20px;
  border-radius: 6px;
  cursor: pointer;
  z-index: 2000;
}

/* ---------- Estrutura principal ---------- */
.sidebar {
  position: fixed;
  top: 0;
  left: 0;
  width: 240px;
  height: 100vh;
  background: linear-gradient(to left, #bacbd4ff, #a2bcc9ff);
  box-shadow: 2px 0 8px rgba(0,0,0,0.15);
  padding-top: 60px;
  overflow-y: auto;
  transition: transform 0.3s ease;
  z-index: 1000; 
}

/* 🔹 No desktop, o menu está sempre visível */
@media (min-width: 1201px) {
  .sidebar {
    transform: translateX(0) !important;
  }
}

/* 🔹 No mobile, o menu começa escondido */
@media (max-width: 1200px) {
  .sidebar {
    transform: translateX(-100%);
  }
  .sidebar.show {
    transform: translateX(0);
  }
}

/* ---------- Itens do menu ---------- */
.sidebar ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.sidebar li {
  border-bottom: 1px solid #A0AFB7;
}

.sidebar a {
  display: block;
  padding: 10px 20px;
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  font-size: 14px;
  transition: background 0.2s;
}

.sidebar a:hover {
  background: rgba(255,255,255,0.15);
}

/* ---------- Submenus ---------- */
.submenu {
  max-height: 0;
  overflow: hidden;
  background: rgba(255,255,255,0.1);
  transition: max-height 0.3s ease;
}

.submenu a {
  padding-left: 40px;
  font-size: 14px;
  background: rgba(255,255,255,0.05);
}

li.open > .submenu {
  max-height: 500px; /* expande suavemente */
}

/* ---------- Ícone indicador ---------- */
.sidebar .toggle-sub {
  float: right;
  transition: transform 0.3s;
}

li.open > a .toggle-sub {
  transform: rotate(180deg);
}

/* Estado ativo */
.sidebar a.active {
  background: rgba(255, 255, 255, 0.3);
  font-weight: bold;
  border-left: 4px solid #fff;
}

/* ---------- Responsividade ---------- */
@media (max-width: 1200px) {
  .menu-toggle {
    display: block;
  }
}
/*---------------- nova sessao rodape -------------------- */
.footer{
    width: 100%;
    text-align: center;
    padding: 30px 0;
}
/* ------------------------------------------------------ */
/* ----------------------- Objetos ---------------------- */
/* ------------------------------------------------------ */
.gauge-box {
  display: flex;
  justify-content: center;
  align-items: center;
  transform: scale(0.8);
  transform-origin: center top;
  margin: 0 auto;
  width: fit-content;
}
.circle-box {
  width: 150px;
  margin: 20px auto;
  display: flex;
  justify-content: center;
  align-items: center;

  transform: scale(1.2);          /* aumenta 20% */
  transform-origin: center center;
}
.circle {
  width: 120px;
  height: 120px;
  /* não precisa girar todo o SVG, apenas o arco */
}
.progress-wrapper {
  display: flex;
  flex-direction: column;
  gap: 2px;      /* mude aqui: 0, 2, 4, 10... */
  padding: 0;
  margin: 0;
}

.progress-fill {
  transition: width 1.5s ease-out;
}
/* podio */ 
.top3-container {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 15px;
  flex-wrap: nowrap; /* impede quebra de linha */
}

.podio {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}
.foto-externa {
  position: relative;
  width: 90px;
  height: 90px;
  margin-bottom: 10px;
}
.foto-wrapper {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid #a2bcc9ff;
}

.foto-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.base p {
  font-weight: 600;
  margin: 5px 0;
  color: #fff;
}

/* Selo da posição */
.posicao {
  position: absolute;
  top: -8px;
  right: -8px;
  background-color: #a2bcc9ff;
  color: white;
  border-radius: 50%;
  font-size: 14px;
  width: 24px;
  height: 24px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: bold;
  border: 2px solid white;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.25);
  z-index: 5;
}

.base {
  width: 120px;
  border-radius: 8px 8px 0 0;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 15px 0;
  margin-top: 10px;
}

.primeiro-base {
  height: 130px;
  background:  rgba(162, 188, 201,0.7);
}

.segundo-base {
  height: 100px;
  background: rgba(162, 188, 201,0.7);
}

.terceiro-base {
  height: 80px;
  background:  rgba(162, 188, 201,0.7);
}


/* Responsivo */
@media (max-width: 600px) {
  .top3-container {
    .top3-container {
    transform: scale(0.8); /* diminui tudo proporcionalmente */
    transform-origin: top center; /* mantém centralizado */
    overflow-x: auto; /* permite rolar horizontalmente se ainda não couber */
  }
  }
}
/*------------------------------------------------------- */
/*---------------- padroes novos  ----------------------- */
/*------------------------------------------------------- */
.main-content {
    margin-left: 240px;
    /*padding: 20px; */
    transition: margin-left 0.3s ease;
    max-width: 1100px;
    padding: 40px 10px 20px 10px;
    display: flex;
    flex-direction: column;
    gap: 40px;
    /* align-items: center; */
}
/* grid dashboard */
    .cards {
        display: flex;
        flex-wrap: wrap;
        gap: 20px;
        justify-content: space-around; /* controla a distribuição dos cards */
        max-width: 1100px;
        
    }

    /* estilo dos cards */
    .card {
        flex: 1 1 220;
        background: white;
        border-radius: 10px;
        padding: 10px;
        text-align: center;
        box-shadow: 0 0 10px rgba(0,0,0,0.1);
        transition: transform 0.2s ease, box-shadow 0.3s ease;
        min-width: 150px;
        cursor: pointer;
    }

    .card:hover {
  transform: scale(1.03);
  box-shadow: 0 0 14px rgba(0,0,0,0.2);
}
    /* divide interior em 30% e 70% */
    /* corrige o alinhamento vertical do conteúdo abaixo do título */
    .card-content {
        flex: 1;
        display: flex;
        align-items: center;         /* mantém ícone e texto centralizados verticalmente */
        justify-content: center;     /* alinha o bloco como um todo no centro horizontal */
        gap: 10px;
        padding-top: 10px;           /* 🔹 adiciona espaço extra em relação ao topo */
        padding-bottom: 10px;        /* 🔹 garante equilíbrio inferior */
        box-sizing: border-box;
    }

    .card-left {
        flex: 0 0 30%;
        display: flex;
        justify-content: center;
        align-items: center;
        padding-left: 20px;
    }

/* agrupa ícone + número verticalmente */
    .icon-wrapper {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .card-right {
        flex: 0 0 70%;
        text-align: left;
    }
    .card-right p {
  white-space: normal;
  word-wrap: break-word;
  overflow-wrap: break-word;
  text-align: center;
  max-width: 90%;          /* evita texto encostar na borda */
  line-height: 1.2em;      /* mais legível */
  margin: 5px 0 0;
}

    .icon-right {
  width: 60px;              /* tamanho fixo da imagem */
  height: 60px;
  object-fit: cover;        /* mantém proporção e corta excesso */
  border-radius: 50%;       /* deixa redonda (opcional) */
  display: block;
  margin: 0 auto 10px;      /* centraliza horizontalmente */
}

.card canvas {
width: 100% !important;   /* ocupa toda a largura do card */
height: 100% !important;  /* recalcula altura automaticamente */
max-height: 180px;        /* limite visual */
}

.linha-click {
cursor: pointer;
transition: background 0.15s;
}

.linha-click:hover {
    background: #f3f4f6;
}


/* --- MODAL --- */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 999;
  opacity: 0;
  transition: opacity 1s ease;
}
.modal-overlay[style*="display: flex"] {
  opacity: 1;
}
.modal {
  background: white;
  border-radius: 12px;
  padding: 25px;
  width: 90%;
  max-width: 450px;
  box-shadow: 0 0 20px rgba(0,0,0,0.3);
  text-align: center;
  animation: fadeIn 1s ease;
}
/* Estilo dashboard e agenda */
.agenda-modal {
  max-height: 80vh;
  overflow-y: auto;
  padding: 10px;
  background: #fff;
  border-radius: 10px;
  font-family: "Segoe UI", sans-serif;
}

.timeline {
  padding-left: 0;
  margin-left: 0;
}

.hora {
  font-weight: 600;
  color: #444;
  margin-top: 15px;
}

.evento {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  background: #f9f9f9;
  border-left: 4px solid #a2bcc9;
  border-radius: 6px;
  padding: 8px 12px;
  margin: 8px 0;
  position: relative;
  transition: transform 0.2s ease;
}

.evento:hover {
  transform: scale(1.02);
  background: #f0f6f8;
}

.hora-evento {
  font-weight: 600;
  color: #444;
  margin-right: 10px;
  min-width: 55px;
}

.detalhes {
  flex: 1;
}
.agenda-modal .detalhes {
  text-align: left;         /* Alinha nome, convênio e tipo à esquerda */
  display: flex;
  flex-direction: column;   /* Mantém os textos em coluna */
  align-items: flex-start;  /* Garante que tudo fique à esquerda */
}

.detalhes .nome {
  font-weight: 500;
  color: #A0AFB7;
  margin: 0;
}

.detalhes .convenio {
  color: #777;
  font-size: 13px;
  margin: 2px 0;
}

.tipo {
  color: #a2bcc9ff;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.ponto {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  display: inline-block;
}

.ponto.confirmado {
  background: rgba(191, 64, 191, 0.8);
}
.ponto.naoconfirmado {
  background: rgba(255, 205, 86, 0.8); 
}
.ponto.finalizado {
  background: rgba(75, 192, 192, 0.8);
}
.ponto.naocompareceu {
  background: rgba(255, 99, 132, 0.8);
}
.ponto.compromisso {
  background: rgba(54, 162, 235, 0.8);
}

@keyframes fadeIn {
  from {opacity: 0; transform: translateY(10px);}
  to {opacity: 1; transform: translateY(0);}
}
/* ---------- Responsividade ---------- */
/* Modal deve considerar o menu lateral em telas >= 769px */
@media (min-width: 1201px) {
    .modal-overlay {
        justify-content: flex-start !important;   /* começa da esquerda */
        padding-left: 240px !important;           /* empurra o modal para fora do menu */
    }
    .modal {
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 1200px) {
  .main-content {
    margin-left: 0;
  }

   .cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* força 2 por linha */
    gap: 10px; /* ajusta espaçamento */
  }

  .card {
    padding: 12px;
    transform: scale(0.95); /* opcional — ligeira compressão pra caber melhor */
    min-width: none;
  }
    .card canvas {
        max-height: 220px; /* ajusta proporção */
    }

  .gauge-box,
  .circle-box {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;           /* força centralização */
    transform-origin: center; /* centraliza a origem */
    width: 100%;              /* ocupa toda a largura do card */
    text-align: center;       /* garante alinhamento interno */
  }
  .gauge-box {
    transform: scale(0.70); /* opcional — evita corte dos gráficos */
  }
  .circle-box {
    transform: scale(0.95); /* opcional — evita corte dos gráficos */
  }
  .agenda-modal {
  max-height: 50vh;
}
.modal {
  max-height: 70vh;
}
}
@media (max-width: 900px) {
  .cards {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
  }

  .card {
    padding: 12px;
  }
}
/* ===== Caixa da tabela ===== */
.cliente-box{
    background:white;
    padding:20px;
    border-radius:12px;
    box-shadow:0 2px 8px rgba(0,0,0,0.15);
}

.cliente-header{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-bottom:0px;
}

/* ===== Tabela */
.cliente-table{
    width:100%;
    border-collapse:collapse;
}

.cliente-table th{
    text-align:left;
    padding:12px;
    color:#A0AFB7;
    font-weight:600;
}

.cliente-table td{
    padding:12px;
    border-top:1px solid #eee;
    color: #a2bcc9ff;
}

.foto-mini{
    width:38px;
    height:38px;
    border-radius:50%;
    object-fit:cover;
}

/* ===== Menu de 3 pontos ===== */

.menu-dots {
    position: relative;
    cursor: pointer;
}

/* Torna cada célula de ações referência para o menu */
.td-acoes {
    position: relative !important;
}

.menu-opcoes {
    position: absolute;
    top: 0;                /* alinha verticalmente no botão */
    right: 35px;           /* desloca para a esquerda */
    background: white;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    border-radius: 10px;
    padding: 8px 0;
    display: none;
    z-index: 999;
    min-width: 130px;
}

.menu-opcoes.show {
    display: block;
}

.menu-opcoes button {
    width: 100%;
    text-align: left;
    padding: 10px 15px;
    background: none;
    border: none;
    font-size: 14px;
    cursor: pointer;
}

.menu-opcoes button:hover {
    background: #f2f4f6;
}

.menu-opcoes button.btn-editar {
    color: #a2bcc9ff !important;
    font-weight: 500;
}
/* Linha superior: foto + nome/sobrenome/cpf */
.linha-topo {
    display: flex;
    gap: 20px;
    margin-top: 20px;
}

/* Coluna da direita (nome/sobrenome/cpf) */
.col-dados-principais {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.col-dados-principais label {
    margin-top: 5px;
}

/* Duas colunas padrão */
.duas-colunas {
    margin-top: 15px;
    display: flex;
    gap: 20px;
}

.duas-colunas > div {
    flex: 1;
}

/* Rodapé */
.rodape-modal {
    margin-top: 20px;
    text-align: right;
}

/* MOBILE - abaixo de 768px */
@media(max-width: 768px) {

    /* FOTO + COLUNA PRINCIPAL mantém o formato normal */
    .linha-topo {
        flex-direction: row; 
    }

    /* Campos abaixo viram 1 coluna */
    .duas-colunas {
        flex-direction: column;
        gap: 0;
    }

    .duas-colunas > div {
        width: 100%;
    }
}


.menu-opcoes button.danger {
    color: #d9534f;
}

.menu-opcoes button i {
    margin-right: 8px;
}



/* === Botão flutuante no topo direito === */
.fab-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1500;
}

/* Botão principal + */
.fab-main {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: #a2bcc9ff;
    color: white;
    border: none;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 28px;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0,0,0,0.25);
    transition: 0.2s;
    position: relative;
}

.fab-main:hover {
    transform: scale(1.08);
}

/* Menu suspenso fixo ao botão (não empurra nada!) */
.fab-options {
    position: absolute;
    top: 65px; /* abaixo do botão */
    right: 0;
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.25);
    padding: 8px 0;
    display: none;
    flex-direction: column;
    width: 150px;
}

.fab-container.show .fab-options {
    display: flex;
}

.fab-item {
    background: transparent;
    color: #a2bcc9ff;
    border: none;
    padding: 10px 15px;
    font-size: 14px;
    text-align: left;
    cursor: pointer;
    width: 100%;
}

.fab-item i {
    color: #a2bcc9ff;
    margin-right: 10px;
}

.fab-item:hover {
    background: #eef3f6;
}

.fechar-modal {
    cursor: pointer;
    display: flex;
    align-items: center; /* Centraliza verticalmente */
    justify-content: center;
    margin-right: 10px; /* Move um pouco para a esquerda */
}

.fechar-modal i {
    font-size: 24px;        /* aumenta o tamanho */
    color: #a2bcc9ff;       /* deixa no tom da paleta */
    transition: 0.2s;
}

.fechar-modal:hover i {
    color: #7d96a3ff;       /* leve escurecida no hover */
    transform: scale(1.1);  /* efeito suave */
}




/* ========================= PAGINAÇÃO ========================= */

.paginacao-container {
    margin-top: 20px;
    display: flex;
    justify-content: space-between; 
    align-items: center;
    flex-wrap: wrap;  /* permite quebrar no mobile */
    gap: 10px;
}

.paginacao-left select {
    padding: 6px 12px;
    border: 1px solid #dcdcdc;
    border-radius: 6px;
    background: #fff;
    color: #333;
    font-size: 14px;
    cursor: pointer;
}

/* números da paginação */
.paginacao-right {
    display: flex;
    gap: 6px;
    align-items: center;
}

/* PAGINAÇÃO RESPONSIVA */
#paginacao {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 20px;
    padding: 10px;
}

.paginacao-btn {
    padding: 6px 10px;
    border-radius: 6px;
    border: 1px solid #ccc;
    background: white;
    cursor: pointer;
    transition: 0.2s;
    color: #333;
}

.paginacao-btn:hover {
    background: #eef4f7;
}

.paginacao-btn.active {
    background: #a2bcc9ff;
    color: white;
    border-color: #8fa5b0;
}

.paginacao-btn.disabled {
    opacity: 0.4;
    pointer-events: none;
}

/* PONTOS (...) */
#paginacao span,
#paginacao div {
    font-size: 18px;
    color: #666;
}
/* Ajuste visual do SELECT */
.select-itens select {
    padding: 6px 12px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 14px;
    color: #333;
    background: white;
}
.foto-container {
    width: 150px;
    text-align: center;
}

.foto-preview {
    width: 150px;
    height: 150px;
    object-fit: cover;
    border-radius: 8px;
    border: 2px solid #a2bcc9;
}

.btn-foto {
    margin-top: 8px;
    display: inline-block;
    background: #e8eef2;
    padding: 8px 12px;
    border-radius: 6px;
    cursor: pointer;
    color: #333;
    font-size: 14px;
}

.btn-foto input {
    display: none;
}

.sexo-btn {
    background:#f1f4f6;
    padding: 8px 14px;
    border-radius:8px;
    cursor:pointer;
}

.sexo-btn input {
    margin-right: 6px;
}

#clienteModal input {
    width:100%;
    padding:10px;
    border:1px solid #ccc;
    border-radius:6px;
    margin-top:5px;
}

.btn-salvar {
    background:#a2bcc9;
    color:white;
    border:none;
    padding:10px 20px;
    border-radius:8px;
    cursor:pointer;
}

.btn-cancelar {
    background:#ddd;
    border:none;
    padding:10px 20px;
    margin-right:8px;
    border-radius:8px;
    cursor:pointer;
}
.overflowTable{
    overflow: auto;
}
@media (max-width: 650px) {
    #paginacao {
        gap: 4px;
    }

    .paginacao-container {
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 15px;
    }

    .paginacao-btn {
        padding: 5px 8px;
        font-size: 13px;
    }

    /* Exibe apenas anterior, atual e próxima */
    #paginacao button:not(.active):not(.disabled):nth-child(n+4):nth-last-child(n+4) {
        display: none;
    }
}


input[type="file"] {
    border-radius: 8px;
    padding: 8px;
    cursor: pointer;
    outline: none;
}
input[type="file"]::file-selector-button {
    cursor: pointer;
}
input[type=file]::-webkit-file-upload-button {
    visibility: hidden;
}























/* --------- colunas e containes ---------- */
/* row principal para dividir colunas */
.rowMain{

}
.rowPrincipal{ 
    display: flex;
    justify-content: space-evenly;
    margin: auto;
    margin-top: 10px;
    margin-bottom: 10px;
    width: 100%;
}
.rowPrincipal2{ 
    display: flex;
    justify-content: space-evenly;
    margin: auto;
    width: 100%;
}
/* row secundario para ir dividindo colunas */
.rowSecundario{ 
    display: flex;
    justify-content: space-evenly;
    margin: auto;
    width: 100%;
}
.rowProntuario{ 
    display: flex;
    justify-content: space-evenly;
    margin: auto;
    width: 100%;
}
.hidden { display:none; }
/* row para inserçao de dados, fica sombreado sobre o principal */
.rowSobrePrincipal{
    position:fixed; 
    z-index:10; 
    background-color:rgba(0,0,0,.25); 
    width:100vw; 
    height:100vh; 
    top:0; 
    left:0;
}
.rowSobrePrincipal2{
    position:fixed; 
    z-index:150; 
    background-color:rgba(0,0,0,.25); 
    width:100vw; 
    height:100vh; 
    top:0; 
    left:0;
}
/* container principal para alocar os objetos */
.containerMain2{
    background-color: transparent;
    padding: 10px 10px;
}

.containerPrincipal{
    background-color: white;
    border-radius: 10px;
    border-color: black;
    padding: 10px 10px;
    box-sizing: border-box;
    box-shadow: 0 0 20px 0px rgba(0,0,0,0.2); /* 0.2 opacidade */  
}
.containerPrincipal2{
    background-color: transparent;
    padding: 10px 10px;
}
.containerSecundario{
    background-color: transparent; 
}
.containerSecreto{
    display: none;
    background-color: transparent; 
}
@media(max-width: 700px){
    .rowPrincipal, .rowSobrePrincipal, .rowProntuario, .rowPrincipal2{
        flex-direction: column;
    }
    .containerPrincipal{
        margin-bottom: 10px;
    }
}
/* ---------tab control--------- */
.tab-buttons {
    display: flex;
    gap: 6px;
}

.tab_btnActive {
    width: 100%;
    border: none;
    color: white;
    background-color: #7aa6c2;
    border-radius: 8px 8px 0px 0px;
    padding: 12px 20px;
    font-size: 14px;
    cursor: pointer;
    transition: background-color .3s ease;
    text-align: center;
}
.tab_btnInactive {
    width: 100%;
    border: none;
    color: white;
    background-color: #c2d5e0;
    border-radius: 8px 8px 0px 0px;
    padding: 12px 20px;
    font-size: 14px;
    cursor: pointer;
    transition: background-color .3s ease;
    text-align: center;
}

.tab-btn.active {
    background-color: #c7d2fe;
}

.tab-btn:hover {
    background-color: #a5b4fc;
}

.content {
    display: none;
}

.content.show {
    display: flex;
    gap: 14px;
    background-color: #c7d2fe;
    border-radius: 0px 0px 8px 8px;
    padding: 16px;
}
/* --------- textos e inputs ---------- */
/* styles */
.navActive{
    background: rgba(255, 255, 255, 0.3);
    font-weight: bold;
    border-left: 8px solid #fff;
}
.divOptions{
    position: fixed;
    top: 90%;
    right: 3%;
    z-index: 8;
    cursor: pointer;
}
.dropdown_Media_Hide{
    display: flex;
}
.dropbtn {
}
.dropdown_Media a{
    display: block; 
    color: #7aa6c2;
    background-color: white;
    text-decoration: none;
    text-align: center;
    font-size: 28px;
    width: 50px;
    border-radius: 50px;
    box-shadow: 0 0 20px 0px rgba(0,0,0,0.5);
    padding: 6px 2px;
} 
.content2_Media{
    position: absolute;
    bottom: 60px;
    right: 0px;
    background-color: white;
    border-radius: 10px;
    width: auto;
    box-shadow: 2px 2px 5px hsla(0, 0%, 0%, 0.8);
    display: none;
    align-items: center;
    justify-content: center;
    margin: auto;
    z-index: 8; 
}
.content2_Media a{
    cursor: pointer;
    background-color: transparent;
    font-size: 14px;
    color: #919191;
    font-weight: 600;
}
.content2_Media_a{
    cursor: pointer;
    background-color: transparent;
    font-size: 14px;
    color: #919191;
    font-weight: 600;
}
.content2_Media_button{
    cursor: pointer;
    background-color: transparent;
    font-size: 14px;
    color: #919191;
    font-weight: 600;
    border: 0px solid #7aa6c2;
    
}
.showOptions{
    display:block; 
    position: absolute;
    bottom: 60px;
    right: 0px;
    background-color: white;
    border-radius: 10px;
    width: auto;
    box-shadow: 2px 2px 5px hsla(0, 0%, 0%, 0.8);
    align-items: center;
    justify-content: center;
    margin: auto;
    z-index: 8; 
}
/* menu tabela */
.dropdown_Media_Hide_Table{

}
.dropdown_Media_Table {
  
} 
.dropdown_Media_Table a{
    cursor: pointer;
    display: block; 
    color: white;
    background-color: #7aa6c2;
    text-decoration: none;
    text-align: center;
    width: 50px;
    border-radius: 10px;
    padding: 2px 0px;
    font-size: 28px;
} 
.content_Media_Table{
    position: absolute;
    translate: 10% 0px;
    background-color: white;
    border-radius: 10px;
    width: 220px;
    box-shadow: 2px 2px 5px hsla(0, 0%, 0%, 0.8);
    display: none;
    align-items: center;
    justify-content: center;
    margin: auto;
    z-index: 8; 
}
.content_Media_Table_Agenda{
    position: absolute;
    translate: -90% 200px;
    background-color: white;
    border-radius: 10px;
    width: 220px;
    box-shadow: 2px 2px 5px hsla(0, 0%, 0%, 0.8);
    display: none;
    align-items: center;
    justify-content: center;
    margin: auto;
    z-index: 8; 
}
.content_Media_Table a{
    cursor: pointer;
    background-color: transparent;
    font-size: 14px;
    color: #919191;
    font-weight: 600;
}
.content_Media_Table_Agenda a{
    cursor: pointer;
    background-color: transparent;
    font-size: 14px;
    color: #919191;
    font-weight: 600;
}
.showOptionsTable{
    cursor: pointer;
    position: absolute;
    translate: -50% 0px;
    background-color: white;
    border-radius: 10px;
    width: 220px;
    box-shadow: 2px 2px 5px hsla(0, 0%, 0%, 0.8);
    display: block;
    align-items: center;
    justify-content: center;
    margin: auto;
    z-index: 8; 
}
@media(max-width: 700px){
 
}
/* tables */
.rowCenter{
    text-align: center;
}
.rowLeft{
    text-align: left;
}
.clickable-row { 
    cursor: pointer; 
}
.clickable-row:hover 
{
    background-color:rgba(0,0,0,0.05);
}
.clickable-div { 
    cursor: pointer; 
}
.clickable-div:hover 
{
    background-color:rgba(0,0,0,0.2);
}
*::-webkit-scrollbar {
    width: 12px;               /* width of the entire scrollbar */
  }
  
*::-webkit-scrollbar-track {
    background: hsla(240, 12%, 97%, 0.699);;        /* color of the tracking area */
  }
  
*::-webkit-scrollbar-thumb {
    background-color: #5886a5;    /* color of the scroll thumb */
    border-radius: 20px;       /* roundness of the scroll thumb */
    border: 3px solid hsla(240, 12%, 97%, 0.699);;  /* creates padding around scroll thumb */
}
.truncate-ellipsis {
    display: inline-block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis; 
    -o-text-overflow: ellipsis;
        max-width: 30%;
}
/* paragrafo */
hr{
   height:5px;
   border-width:0;
   color:#A0AFB7;
   background-color:#A0AFB7; 
}
/* titulo */
h1{
    color:#a2bcc9ff;
    font-weight: 600;
    font-size: 24px; 
}
/* texto normal */
h2{
    color:#a2bcc9ff;
    font-size: 14px;
}
h3{
    color:#919191;
    font-size: 2rem;
    font-weight: 600;
}
h4{
    color: rgb(148, 210, 248);
    font-size: 14px;
}
h5{
    color: rgb(163, 248, 220);
    font-size: 14px;
} 
h6{
    color: rgb(245, 239, 163);
    font-size: 14px; 
}
p{
    color: #a2bcc9ff;
    font-size: 14px;
}
/* inputs */
textarea{
    background-color: transparent;
    color:#7aa6c2;
    font-size: 14px; 
    width:100%;
    resize: vertical;
    overflow-y: auto;
}
input{
    width: 100%;
    padding: 10px;
    color:#a2bcc9ff;
    outline: none;
    border: 1px solid #a2bcc9ff;
    background-color: transparent;
    box-sizing: border-box;
    font-size: 14px;
    border-radius: 10px;
    font-weight: 500;
}
input[type="checkbox"]{
    accent-color: #a2bcc9ff;
}
input[type="checkbox"]::before {
    transform-origin: bottom left;
    clip-path: polygon(14% 44%, 0 65%, 50% 100%, 100% 16%, 80% 0%, 43% 62%);
}
input[type="radio"] {
    accent-color: #a2bcc9ff;
  }
select{
    width: 100%;
    padding: 10px;
    background-color: transparent;
    color: #a2bcc9ff;
    border: 1px solid #a2bcc9ff;
    font-size: 14px;
    border-radius: 10px;
} 
input::placeholder{
    color: #a2bcc9ff;
}

.etiqueta{
    border-radius: 10px;
    font-size: 14px;
    width: fit-content;
    padding: 5px 10px;
}
.dataInputTitulo{
    width: 80%;
    box-sizing: content-box;
    font-size: 24px;
    background: transparent;
    color: #7aa6c2;
    border-color: transparent;  
}


label{
    color:#a2bcc9ff;
    font-weight: 600;
    font-size: 14px;
    outline: none;
    box-sizing: border-box;
    width: 100%;
    padding: 10px 12px;
}
.clickButtonConfirm{
    text-align: center;
    background-color: #a2bcc9ff;
    border-radius: 10px;
    border-color: transparent;
    box-sizing: border-box;
    font-size: 14px;
    cursor: pointer;
    color: white;
    padding: 12px 20px;
}
.clickButtonConfirmDisabled{
    text-align: center;
    background-color: #c2d5e0;
    border-radius: 10px;
    border-color: transparent;
    box-sizing: border-box;
    font-size: 14px;
    cursor: none;
    color: white;
    padding: 12px 20px;
}
.clickButtonConfirm .fa{
    color: white;
    font-size: 14px;
}
.clickButtonConfirm:hover{
    background: #c2d5e0;
    transition: 1s;
    box-shadow: 0 0 20px 0px rgba(0,0,0,0.2); /* 0.2 opacidade */ 
}
.clickButtonCall{
    text-align: center;
    background-color: #a2bcc9ff;
    border-radius: 10px;
    box-sizing: border-box;
    font-size: 14px;
    cursor: pointer;
    color: white;
    padding-top: 10px;
    padding-bottom: 10px;
}
.clickButtonCall .fa{
    color: white;
    font-size: 40px;
}
.clickButtonCall:hover{
    background: #c2d5e0;
    transition: 1s;
    box-shadow: 0 0 20px 0px rgba(0,0,0,0.2); /* 0.2 opacidade */ 
}
/*------------------------------------------------------- */
/*---------------- nova pagina clientes -------------------- */
/*------------------------------------------------------- */ 
.tabelaClientesImg{
    max-width: 45px;
    max-height: 60px;
    border-radius: 10%;
}
.userNewUpdateImg{
    border-radius: 10px;
    max-width: 180px;
    max-height: 240px;
    margin-left: auto;
    margin-right: auto;
}
.inputDisplayNone{
    display: none;
}
.userNew{
    display: none;
    position:fixed; 
    z-index:100; 
    background-color:white;
    border: 6px solid rgba(0, 0, 0, 0.5);
    border-radius: 10px;
    max-width: 1000px;
    min-width: 400px;
    max-height: 100%; 
    top:50%; 
    left: 50%;
    transform: translate(-50%, -50%);
    overflow: auto;
}
.table-clientes{
    width: 100%;
    border-collapse: collapse;
    background:white;
    color: black;
}
.table-clientes a{
    font-size: 14px;
}
.table-clientes th{
    text-align: center;
    color: white;
    background: #7aa6c2;
    padding: 10px;
    font-size: 14px;
}
.table-clientes td{
    color: #7aa6c2; 
    font-size: 14px;
    border-bottom: 2px solid hsla(240, 12%, 97%, 0.699);
}
.table-clientes td:nth-child(2){
text-align: left;
}

@media(max-width: 700px){
    .table-clientes th:nth-child(3){
        display: none;
    }
    .table-clientes td:nth-child(3){
        display: none;
    }
    .table-clientes th:nth-child(4){
        display: none;
    }
    .table-clientes td:nth-child(4){
        display: none;
    }
}
/*------------------------------------------------------- */
/*---------------- nova pagina Clientes Detalhes -------------------- */
/*------------------------------------------------------- */
.userUpdate{
    display: none;
    position:fixed; 
    z-index:100; 
    background-color:white;
    border: 6px solid rgba(0, 0, 0, 0.5);
    max-width: 1000px;
    min-width: 400px;
    max-height: 100%; 
    top:50%; 
    left: 50%;
    transform: translate(-50%, -50%);
    overflow: auto;
    border-radius: 10px;
}
.userComments{
    display: none;
    position:fixed; 
    z-index:100; 
    background-color:white;
    border: 6px solid rgba(0, 0, 0, 0.5);
    border-radius: 10px;
    max-width: 380px; 
    min-width: 380px;
    max-height: 100%; 
    top:50%; 
    left: 50%;
    transform: translate(-50%, -50%);
    overflow: auto;
}
.table-userdetails{
    padding-top: 0px;
    width: 100%;
    border-collapse: collapse;
    background:white;
    color: black;
    text-align: center;
}
.table-userdetails th{
        color: white;
        background: #7aa6c2;
        padding: 10px;
        font-size: 14px;
}
.table-userdetails td{
    color: #7aa6c2; 
    font-size: 14px;
    border-bottom: 2px solid hsla(240, 12%, 97%, 0.699);
}
.table-userdetails td:nth-child(2){
    text-align: left;
}
.table-userdetailsc{
    padding-top: 0px;
    width: 100%;
    border-collapse: collapse;
    background:white;
    color: black;
    text-align: center;
}
.table-userdetailsc th{
        color: white;
        background: #7aa6c2;
        padding: 10px;
        font-size: 14px;
}
.table-userdetailsc td{
    color: #7aa6c2; 
    font-size: 14px;
    border-bottom: 2px solid hsla(240, 12%, 97%, 0.699);
}

@media(max-width: 700px){
    .table-userdetails td:nth-child(2){
        text-align: left;
    }
    .table-userdetails td:nth-child(3){
        text-align: center;
    }
    .table-userdetailsc td:nth-child(2){
        text-align: center;
    }
    .table-userdetailsc td:nth-child(3){
        text-align: center;
    }
    

} 
/*------------------------------------------------------- */
/*---------------- nova pagina Agenda -------------------- */
/*------------------------------------------------------- */
.agendaDataHoje{
    background-color:rgb(240, 240, 240);
    border-radius: 10px;
}
.agendaProntuarioImg{
    border-radius: 10px;
    max-width: 300px;
    max-height: 417;
    margin-left: auto;
    margin-right: auto;
}
.agendaProntuarioImg:hover{
    box-shadow: 0 0 20px 0px rgba(0,0,0,0.2); /* 0.2 opacidade */ 
    }
.agendaNew{
    display: none;
    position:fixed; 
    z-index:100; 
    background-color:white;
    border: 6px solid rgba(0, 0, 0, 0.5);
    border-radius: 10px;
    max-width: 580px; 
    min-width: 400px;
    max-height: 100%; 
    top:50%; 
    left: 50%;
    transform: translate(-50%, -50%);
    overflow: auto;
}
.agendaUpdate{
    display: none;
    position:fixed; 
    z-index:200; 
    background-color:white;
    border: 6px solid rgba(0, 0, 0, 0.5);
    border-radius: 10px;
    max-width: 580px; 
    min-width: 400px;
    max-height: 100%; 
    top:50%; 
    left: 50%;
    transform: translate(-50%, -50%);
    overflow: auto;
}
.agendaChamada{
    display: none;
    position:fixed; 
    z-index:100; 
    background-color:white;
    border: 6px solid rgba(0, 0, 0, 0.5);
    border-radius: 10px;
    max-width: 400px; 
    min-width: 350px;
    max-height: 100%; 
    top:50%; 
    left: 50%;
    transform: translate(-50%, -50%);
    overflow: auto;
}
.tableAgendaMensal {
    margin-top: 0px;
}
.table-agendaMensal{
    table-layout: fixed;
    padding-top: 0px;
    width: 100%;
    border-collapse: collapse;
    background:white;
    color: black;
    border-style: hidden;
}
.semSublinhado {
    text-decoration: none;
  }
.comSublinhado {
border-bottom: 3px solid #7aa6c2;
}
.comSublinhado2 {
    border-bottom: 3px solid #919191;
}
.table-agendaMensal th,td{
    padding: 10px;
}
.table-agendaMensal th{
    text-align: center;
    color: white;/* #ffb09c; */
    font-weight: 600;
    background: #7aa6c2;
}
.table-agendaMensal td{
    text-align: center;
    border-bottom: 5px solid #7aa6c2;
}
.tableAgendaFechada {
    text-align: center;
    background-color:rgba(54, 162, 235, 0.1);
}
.tableAgendaNaoCompareceu {
    text-align: center;
    background-color: rgba(255, 99, 132,0.1); 
}
.tableAgendaConfirmada {
    text-align: center;
    background-color: rgba(191,64,191,0.1); 
}
.tableAgendaConcluida {
    text-align: center;
    background-color: rgba(75, 192, 192,0.1);
}
.tableAgendaAgendado {
    text-align: center;
    background-color:rgba(255, 205, 86, 0.1);
}
.tableAgendaHorario {
    width: 20%;
    text-align: center;
    border-bottom: 2px solid hsla(240, 12%, 97%, 0.699);
}
.table-agenda{
    padding-top: 0px;
    width: 100%;
    background:white;
    color: black;
    border-style: hidden;
}
.table-agenda th,td{
    padding: 0px;
}
.table-agenda th{
    text-align: center;
    color: white;/* #ffb09c; */
    font-weight: 600;
    background: #7aa6c2;
}
.table-agenda td{
    color: #7aa6c2; 
    /*border-bottom: 2px solid hsla(240, 12%, 97%, 0.699); */
}
/* tabela de agenda venda */
.table-agendavendasadd{
    padding-top: 10px;
    width: 100%;
    border-collapse: collapse;
    background:white;
}
.table-agendavendasadd th,td{
    padding: 10px;
}
.table-agendavendasadd th{
    text-align: center;
    font-weight: 600;
    color: white;/* #ffb09c; */
    background: #7aa6c2;
}
.table-agendavendasadd td{
    color: #7aa6c2; 
    font-size: 14px;
    border-bottom: 2px solid hsla(240, 12%, 97%, 0.699);
}
.table-agendavendasadd td:nth-child(2),td:nth-child(3){
    text-align: center;
    
}
.table-agendavendasadd td:nth-child(1){
    text-align: left;   
}
/* tabela do prontuario */
.table-agendaProntuario{
    padding-top: 0px;
    width: 100%;
    border-collapse: collapse;
    background:white;
    color: black;
    border-style: hidden;
}
.table-agendaProntuario th{
    text-align: center;
    color: white;
    background: #7aa6c2;
    padding: 10px;
    font-size: 14px;
}
.table-agendaProntuario td{
    text-align: center;
    color: #7aa6c2; 
    font-size: 14px;
    border-bottom: 2px solid hsla(240, 12%, 97%, 0.699);
}
@media(max-width: 700px){
    .agendaProntuarioImg{
        max-width: 150px;
        max-height: 209px;
    }
}
/*------------------------------------------------------- */
/*---------------- nova pagina admin login -------------------- */
/*------------------------------------------------------- */
.row_admin{
    margin-top: 20px;
    display: flex;
    justify-content: center;
}
.admin-login{
    width: 95%;
    margin: auto;
    padding: 0px 0;
}
.admin-login-col{
    flex-basis: 33%;
    background-color: white;
    border-radius: 10px;
    border-color: black;
    margin-bottom: 0%;
    padding: 20px 12px;
    box-sizing: border-box;
    box-shadow: 0 0 20px 0px rgba(0,0,0,0.2); /* 0.2 opacidade */   
}
.admin-login-col input{
    width: 100%;
    color:#7aa6c2;
    padding: 10px;
    margin-bottom: 10px;
    outline: none;
    border: 1px solid #7aa6c2;
    background-color: transparent;
    box-sizing: border-box;
}
.admin-login-col input::placeholder{
    color: #7aa6c2;
}
.admin-login-col label{
    color:#7aa6c2;
    width: 100%;
    padding: 5px;
    margin-bottom: 1px;
    outline: none;
    box-sizing: border-box;
}
.admin-login-col button{
    margin-top: 10px;
    margin-right: 0px;
    /*float: right; */
}
.password-toggle-icon {
    position: absolute; 
                 right: 10px; 
                 top: 70%; 
                 transform: translateY(-50%); 
                 cursor: pointer; 
                 
    z-index: 2;
  }
  
  .password-toggle-icon i {
    font-size: 18px;
    line-height: 1;
    transition: color 0.3s ease-in-out;
    margin-bottom: 20px;
  }
@media(max-width: 700px){
    .row_admin{
        flex-direction: column;
    }
}

.admin-login-col h4{
    text-align: center;
    margin-bottom: 10px;
}
/*------------------------------------------------------- */
/*---------------- nova pagina procedimentos logged -------------------- */
/*------------------------------------------------------- */
.procedimentosNew{
    display: none;
    position:fixed; 
    z-index:100; 
    background-color:white;
    border: 6px solid rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    max-width: 580px; 
    min-width: 400px;
    max-height: 100%; 
    top:50%; 
    left: 50%;
    transform: translate(-50%, -50%);
    overflow: auto;
}
.procedimentosUpdate{
    display: none;
    position:fixed; 
    z-index:100; 
    background-color:white;
    border: 6px solid rgba(0, 0, 0, 0.3);
    max-width: 580px; 
    min-width: 400px;
    max-height: 100%; 
    top:50%; 
    left: 50%;
    transform: translate(-50%, -50%);
    overflow: auto;
}
.table-procedimentos{
    padding-top: 0px;
    width: 100%;
    border-collapse: collapse;
    background:white;
    color: black;
}
.table-procedimentos th,td{
    padding: 10px;
}
.table-procedimentos th{
    text-align: center;
    color: white;/* #ffb09c; */
    background: #7aa6c2;
}
.table-procedimentos td{
    color: #7aa6c2; 
    font-size: 14px;
    border-bottom: 2px solid hsla(240, 12%, 97%, 0.699);
}
.table-procedimentos td:nth-child(2),td:nth-child(3),td:nth-child(4){
    text-align: center;
}
.table-procedimentos td:nth-child(1){
    text-align: left;
}

@media(max-width: 700px){
    
    .table-procedimentos th:nth-child(3){
        display: none;
    }
    .table-procedimentos td:nth-child(3){
        display: none;
    }
}
/*------------------------------------------------------- */
/*---------------- nova pagina dashboard -------------------- */
/*------------------------------------------------------- */
.aMarquee{
    color:#919191;
}
.divPintado{
    padding: 5px 0px;
    background-color: hsla(240, 12%, 97%, 0.699);
}
.divPintado2{
    padding: 5px 0px;
    background-color: #5886a5;
}
.table-dashboard{
    width: 100%;
    border-collapse: collapse;
    background: white;
    color: black;
    border-style: hidden;
    border-spacing: 5px; 
}
.table-dashboard th{
    text-align: center;
    font-weight: 600;
    color: #9dc6e0;/* #ffb09c; */
    background: #fff3f3;
}
.table-dashboard td{
    border: 2px solid #9dc6e0;
}
.table-dashboard tr:nth-of-type(2n){
    background: hsla(240, 12%, 97%, 0.699);
}


@media(max-width: 700px){
}
/*------------------------------------------------------- */
/*---------------- nova pagina Despesas -------------------- */
/*------------------------------------------------------- */
.despesasNew{
    display: none;
    position:fixed; 
    z-index:100; 
    background-color:white;
    border: 6px solid rgba(0, 0, 0, 0.5);
    border-radius: 10px;
    max-width: 580px; 
    min-width: 400px;
    max-height: 100%; 
    top:50%; 
    left: 50%;
    transform: translate(-50%, -50%);
    overflow: auto;
}
.despesasUpdate{
    display: none;
    position:fixed; 
    z-index:100; 
    background-color:white;
    border: 6px solid rgba(0, 0, 0, 0.5);
    border-radius: 10px;
    max-width: 580px; 
    min-width: 400px;
    max-height: 100%; 
    top:50%; 
    left: 50%;
    transform: translate(-50%, -50%);
    overflow: auto;
}
.table-despesas{
    padding-top: 0px;
    width: 100%;
    border-collapse: collapse;
    background:white;
    color: black;
}
.table-despesas tr{
    height:60px;
}
.table-despesas th,td{
    padding: 10px;
}
.table-despesas th{
    font-weight: 600;
    color: white;/* #ffb09c; */
    background: #7aa6c2;
}
.table-despesas td{
    color: #7aa6c2; 
    font-size: 14px;
    border-bottom: 2px solid hsla(240, 12%, 97%, 0.699);
}
.table-despesas td:nth-child(2){
    text-align: left;
}
.table-despesas td:nth-child(1),td:nth-child(3),td:nth-child(4), td:nth-child(5){
    text-align: center;
}

 

@media(max-width: 700px){
    .table-despesas td:nth-child(1),td:nth-child(3),td:nth-child(4){
        text-align: center;
    }
    .table-despesas td:nth-child(2){
        text-align: left;
    }
    .table-despesas td:nth-child(5){
        text-align: left;
    }
    .table-despesas th:nth-child(4){
        display: none;
    }
    .table-despesas td:nth-child(4){
        display: none;
    }
    .table-despesas tr{
        height: fit-content;
        width: fit-content;
    }
    

}
/*------------------------------------------------------- */
/*---------------- nova pagina Vendas -------------------- */
/*------------------------------------------------------- */
.lineTable{
    border: none;
    margin: 0px;
    padding: 0;
    border-spacing: 0px;
}
.lineTable th,td {
    border: none;
    margin: 0px;
    padding: 0;
    border-spacing: 0px;
}
.vendasNew{
    display: none;
    position:fixed; 
    z-index:100; 
    background-color:white;
    border: 6px solid rgba(0, 0, 0, 0.5);
    border-radius: 10px;
    max-width: 1000px;
    min-width: 400px;
    max-height: 100%; 
    top:50%; 
    left: 50%;
    transform: translate(-50%, -50%);
    overflow: auto;
}
.table-vendas{
    padding-top: 0px;
    width: 100%;
    border-collapse: collapse;
    background:white;
    color: black;
}
.table-vendas th,td{
    padding: 10px;
}
.table-vendas th{
    text-align: center;
    font-weight: 600;
    color: white;/* #ffb09c; */
    background: #7aa6c2;
}
.table-vendas td{
    color: #7aa6c2; 
    font-size: 14px;
    border-bottom: 2px solid hsla(240, 12%, 97%, 0.699);
}
.table-vendas td:nth-child(1),td:nth-child(4), td:nth-child(5),td:nth-child(6){
    text-align: center;
}
.table-vendas td:nth-child(2),td:nth-child(3){
    text-align: left;
}
/* tabela vendas add */
.table-vendasadd{
    padding-top: 0px;
    width: 100%;
    border-collapse: collapse;
    background:white;
}
.table-vendasadd th,td{
    padding: 10px;
}
.table-vendasadd th{
    text-align: center;
    font-weight: 600;
    color: white;/* #ffb09c; */
    background: #7aa6c2;
}
.table-vendasadd td{
    color: #7aa6c2; 
    font-size: 14px;
    border-bottom: 2px solid hsla(240, 12%, 97%, 0.699);
}

.table-vendasadd td:nth-child(1),td:nth-child(4), td:nth-child(5){
    text-align: center;
    
}
.table-vendasadd td:nth-child(2),td:nth-child(3){
    text-align: left;   
}
/* tabela boletos */
.table-boletos{
    padding-top: 0px;
    width: 100%;
    border-collapse: collapse;
    background:white;
    color: black;
}
.table-boletos th,td{
    padding: 10px;
}
.table-boletos th{
    text-align: center;
    font-weight: 600;
    color: white;/* #ffb09c; */
    background: #7aa6c2;
}
.table-boletos td{
    color: #7aa6c2; 
    font-size: 14px;
    border-bottom: 2px solid hsla(240, 12%, 97%, 0.699);
}

.table-boletos td:nth-child(1),td:nth-child(4), td:nth-child(5), td:nth-child(6){
    text-align: center;
}
@media(max-width: 700px){
    .table-vendas th:nth-child(3){
        display: none;
    }
    .table-vendas td:nth-child(3){
        display: none;
    }
    .table-vendas th:nth-child(4){
        display: none;
    }
    .table-vendas td:nth-child(4){
        display: none;
    }
    .table-vendasadd td:nth-child(2){
        text-align: left;
    }
    .table-vendasadd th:nth-child(1){
        display: none;
    }
    .table-vendasadd td:nth-child(1){
        display: none;
    }
    .table-vendasadd th:nth-child(3){
        display: none;
    }
    .table-vendasadd td:nth-child(3){
        display: none;
    }
    .table-vendasadd td:nth-child(2){
        text-align: left;
    }
    .table-boletos th:nth-child(2){
        display: none;
    }
    .table-boletos td:nth-child(2){
        display: none;
    }
    .table-boletos th:nth-child(5){
        display: none;
    }
    .table-boletos td:nth-child(5){
        display: none;
    }

}
/*------------------------------------------------------- */
/*---------------- nova pagina resultados -------------------- */
/*------------------------------------------------------- */
.resultadoImg{
    max-width: 270px;
    max-height: 360px;
    border-radius: 10%;
}
.resultados-page{
    width: 95%;
    margin: auto;
}
@media(max-width: 700px){
    .row16{
        flex-direction: column;
    }
    .resultadoImg{
        max-width: 135px;
        max-height: 180px;
    }
}
/*------------------------------------------------------- */
/*------------- nova pagina documentos ------------------ */
/*------------------------------------------------------- */
.table-documentos-nova{
    padding-top: 0px;
    width: 100%;
    border-collapse: collapse;
    background:white;
    color: black;
}
.table-documentos-nova th,td{
    padding: 10px;
}
.table-documentos-nova th{
    text-align: center;
    font-weight: 600;
    color: white;/* #ffb09c; */
    background: #7aa6c2;
}
.table-documentos-nova td{
    color: #7aa6c2; 
    font-size: 14px;
    border-bottom: 2px solid hsla(240, 12%, 97%, 0.699);
}
.table-documentos-nova td:nth-child(1), td:nth-child(2), td:nth-child(4){
    text-align: center;
}
.table-documentos-nova td:nth-child(3){
    text-align: left;
}
@media(max-width: 700px){

    .table-documentos-nova th:nth-child(2){
        display: none;
    }
    .table-documentos-nova td:nth-child(2){
        display: none;
    } 
}
/*------------------------------------------------------- */
/*-------------- nova pagina lembretes ------------------ */
/*------------------------------------------------------- */
.lembretesNew{
    display: none;
    position:fixed; 
    z-index:100; 
    background-color:white;
    border: 6px solid rgba(0, 0, 0, 0.5);
    border-radius: 10px;
    max-width: 580px; 
    min-width: 400px;
    max-height: 100%; 
    top:50%; 
    left: 50%;
    transform: translate(-50%, -50%);
    overflow: auto;
}
.lembretes-col2 input:active {
    border-color: #7aa6c2;
}
.table-lembretes{
    padding-top: 0px;
    width: 100%;
    border-collapse: collapse;
    background:white;
    color: black;
}
.table-lembretes th,td{
    padding: 10px;
}
.table-lembretes th{
    text-align: center;
    color: white;
    font-weight: 600;
    background: #7aa6c2;
}
.table-lembretes td{
    color: #7aa6c2; 
    font-size: 14px;
    border-bottom: 2px solid hsla(240, 12%, 97%, 0.699); 
}
.table-lembretes td:nth-child(1), td:nth-child(3){
    text-align: center;
}
.table-lembretes td:nth-child(2){
    text-align: left;
}
/*------------------------------------------------------- */
/*-------------- nova pagina configuracoes ------------------ */
/*------------------------------------------------------- */
.configAcessoUpdate{
    display: none;
    position:fixed; 
    z-index:100; 
    background-color:white;
    border: 6px solid rgba(0, 0, 0, 0.5);
    max-width: 1000px;
    min-width: 400px;
    max-height: 100%; 
    top:50%; 
    left: 50%;
    transform: translate(-50%, -50%);
    overflow: auto;
}
.table-configUsuario{
    padding-top: 0px;
    width: 100%;
    border-collapse: collapse;
    background:white;
    color: black;
    border-style: hidden;
}
.table-configUsuario th{
    text-align: center;
    color: white;
    background: #7aa6c2;
    padding: 10px;
    font-size: 14px;
}
.table-configUsuario td{
    color: #7aa6c2; 
    font-size: 14px;
    border-bottom: 2px solid hsla(240, 12%, 97%, 0.699);
}

@media(max-width: 700px){
}
/*------------------------------------------------------- */
/*---------------- nova pagina relatorios  -------------------- */
/*------------------------------------------------------- */
.table-financeiro{
    padding-top: 0px;
    width: 100%;
    border-collapse: collapse;
    background:white;
    color: black;
}
.table-financeiro th,td{
    padding: 10px;
}
.table-financeiro th{
    text-align: center;
    color: white;
    font-weight: 600;/* #ffb09c; */
    background: #7aa6c2;
}
.table-financeiro td{
    color: #7aa6c2; 
}
.table-financeiro tr:nth-of-type(2n){
    background: hsla(240, 12%, 97%, 0.699);
}
/* novos clientes */
.table-novosClientes{
    padding-top: 0px;
    width: 100%;
    border-collapse: collapse;
    background:white;
    color: black;
}
.table-novosClientes th,td{
    padding: 10px;
}
.table-novosClientes th{
    text-align: center;
    color: white;
    font-weight: 600;/* #ffb09c; */
    background: #7aa6c2;
}
.table-novosClientes td{
    color: #7aa6c2; 
}
.table-novosClientes tr:nth-of-type(2n){
    background: hsla(240, 12%, 97%, 0.699);
}
/* novos clientes */
.table-logsEventos{
    padding-top: 0px;
    width: 100%;
    border-collapse: collapse;
    background:white;
    color: black;
}
.table-logsEventos th,td{
    padding: 10px;
}
.table-logsEventos th{
    text-align: center;
    color: white;
    font-weight: 600;/* #ffb09c; */
    background: #7aa6c2;
}
.table-logsEventos td{
    color: #7aa6c2; 
}
.table-logsEventos tr:nth-of-type(2n){
    background: hsla(240, 12%, 97%, 0.699);
}
@media(max-width: 700px){

    .table-logsEventos th:nth-child(5){
        display: none;
    }
    .table-logsEventos td:nth-child(5){
        display: none;
    } 
}
/*------------------------------------------------------- */
/*---------------- nova pagina estoque -------------------- */
/*------------------------------------------------------- */ 
.tabelaEstoqueImg{
    max-width: 45px;
    max-height: 60px;
    border-radius: 10%;
}
.estoqueNewUpdateImg{
    border-radius: 10px;
    max-width: 180px;
    max-height: 240px;
    margin-left: auto;
    margin-right: auto;
}
.estoqueNew{
    display: none;
    position:fixed; 
    z-index:100; 
    background-color:white;
    border: 6px solid rgba(0, 0, 0, 0.5);
    border-radius: 10px;
    max-width: 1000px;
    min-width: 400px;
    max-height: 100%; 
    top:50%; 
    left: 50%;
    transform: translate(-50%, -50%);
    overflow: auto;
}
.estoqueUpdate{
    display: none;
    position:fixed; 
    z-index:100; 
    background-color:white;
    border: 6px solid rgba(0, 0, 0, 0.5);
    max-width: 1000px;
    min-width: 400px;
    max-height: 100%; 
    top:50%; 
    left: 50%;
    transform: translate(-50%, -50%);
    overflow: auto;
    border-radius: 10px; 
}
.estoqueSubProdutoNew{
    display: none;
    position:fixed; 
    z-index:100; 
    background-color:white;
    border: 6px solid rgba(0, 0, 0, 0.5);
    max-width: 1000px;
    min-width: 400px;
    max-height: 100%; 
    top:50%; 
    left: 50%;
    transform: translate(-50%, -50%);
    overflow: auto;
    border-radius: 10px; 
}
.SubProdutoUpdate{
    display: none;
    position:fixed; 
    z-index:100; 
    background-color:white;
    border: 6px solid rgba(0, 0, 0, 0.5);
    border-radius: 10px;
    max-width: 300px; 
    min-width: 250px;
    max-height: 100%; 
    top:50%; 
    left: 50%;
    transform: translate(-50%, -50%);
    overflow: auto;
}
.table-estoque{
    width: 100%;
    border-collapse: collapse;
    background:white;
    color: black;
}
.table-estoque a{
    font-size: 14px;
}
.table-estoque th{
    text-align: center;
    color: white;
    background: #7aa6c2;
    padding: 10px;
    font-size: 14px;
}
.table-estoque td{
    color: #7aa6c2; 
    font-size: 14px;
    border-bottom: 2px solid hsla(240, 12%, 97%, 0.699);
}
.table-estoquedetailsa{
    width: 100%;
    border-collapse: collapse;
    background:white;
    color: black;
}
.table-estoquedetailsa a{
    font-size: 14px;
}
.table-estoquedetailsa th{
    text-align: center;
    color: white;
    background: #7aa6c2;
    padding: 10px;
    font-size: 14px;
}
.table-estoquedetailsa td{
    color: #7aa6c2; 
    font-size: 14px;
    border-bottom: 2px solid hsla(240, 12%, 97%, 0.699);
}
@media(max-width: 700px){
    .table-estoque th:nth-child(2){
        display: none;
    }
    .table-estoque td:nth-child(2){
        display: none;
    }
    .table-estoque th:nth-child(4){
        display: none;
    }
    .table-estoque td:nth-child(4){
        display: none;
    }

    .table-estoquedetailsa th:nth-child(1){
        display: none;
    }
    .table-estoquedetailsa td:nth-child(1){
        display: none;
    }
    .table-estoquedetailsa th:nth-child(2){
        display: none;
    }
    .table-estoquedetailsa td:nth-child(2){
        display: none;
    }
    .table-estoquedetailsa th:nth-child(4){
        display: none;
    }
    .table-estoquedetailsa td:nth-child(4){
        display: none;
    }
}
/*------------------------------------------------------- */
/*---------- nova pagina documentacao digital ----------- */
/*------------------------------------------------------- */
.documentos-forms-A4Page{
    border-radius: 0px;
    border-color: black;
    margin-bottom: 50px;
    box-sizing: border-box;
    box-shadow: 0 0 20px 0px rgba(0,0,0,0.2); /* 0.2 opacidade */   
    /* A4 page */
    width: 21cm; 
    height: 28.69cm;
    /*min-height: 29.7cm;
    max-height: 29.7cm; */
    padding-top: 0.5cm;
    /* padding-bottom: 2cm; */
    padding-left: 2cm;
    padding-right: 2cm;
    margin: 1cm auto;
    background-image: url(images/documentos-rodape.png) ;
    background-position: center; /* vocer */
    background-position-y: 100%;
    background-size: contain; /* cover */
    background-repeat: no-repeat;
    position: relative;
}

@media(max-width: 650px){
    
}
/*------------------------------------------------------- */
/*---------------- nova pagina documentos digital---------------- */
/*------------------------------------------------------- */

/* <!-- -------------- Divisao Declaracao ---------------- --> */
.documentos-Declaracao-label{
    text-align: center;
}
.documentos-Declaracao-label h2{
    font-size: 20px;
    font-weight: 600;
}
.documentos-Declaracao-paragrafo{
    text-align: justify;
}
.documentos-Declaracao-paragrafo p{
    font-size: 14px;
    font-weight: 300;
    color: black;
}
/* <!-- -------------- Divisao Assinatura ---------------- --> */
.documentos-Assinatura-label{
    text-align: center;
}
.documentos-Assinatura-label h2{
    font-size: 20px;
    font-weight: 600;
}
.documentos-Assinatura-image img{
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 50%;
}
.documentos-Assinatura-line hr{
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 50%;
}
.documentos-AssinaturaPad-titulo h2{
    font-size: 20px;
    font-weight: 600;
    text-align: center;
}
.documentos-AssinaturaPad-botao1 button{
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 50%;
}