
@import url('https://fonts.googleapis.com/css2?family=Nunito+Sans:ital,opsz,wght@0,6..12,200..1000;1,6..12,200..1000&family=Red+Hat+Display:ital,wght@0,300..900;1,300..900&display=swap');

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: "Nunito Sans", sans-serif;
}

:root {
    --cor-coc: #2b8a3e;
    --cor-segundaria:#00D12E;
    --cor-terceira: #223526;
    --cor-destaque:#4E2B8A;
    --cor-perigo:#AB0535;
    --cor-azul:#005D89;
    --cor-botaos: #F0F2F5;

  }

body {
    background-color: #F0F2F5;
}

.container {
    text-align: center;
    width: 80%;
    max-width: 1000px;
    margin: 150px auto;
}
.container  a {
   text-decoration: none;
   color: #333;
}
.popup-content input{
    width: 80%;
    height: 50px;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 10px;
}

.containerp {
    width: 100%;
    margin: 50px auto;
    display: flex;
    gap: 10px;
    flex-direction: row;
    max-width: 1000px;
}
h1 {
    font-size: 2em;
    margin-bottom: 20px;
}


.tag-lead-d {
    position: relative;
}
.new {
    border: solid 1px #F13C0B !important;
    background:rgba(241,60,11,0.01405112044817926)!important;
}
.tag-lead {
   background-color: #F13C0B;
    color: white;
    padding: 10px;
    text-align: center;
    border-radius: 10px;
    position: absolute;
    font-size: 0.9em;
    width: 120px;
    height: 40px;
    margin-top: -1px;
    margin-left: 528px; 
}

/* estilo do menu  */

.desktop-menu {
    width: 100%;
    display: flex;
    flex-direction: row;
    margin: auto;
    justify-content: center;
    align-items: center;
}
/* Menu Mobile */
.mobile-menu {
    display: none; /* Oculta no desktop */
}

.mobile-menu .menu-toggle {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: white;
}

.mobile-menu .logs {
    display: none; /* Inicialmente oculto */
    flex-direction: column; /* Empilha os itens verticalmente */
    gap: 10px;
    background-color: var(--cor-coc);
    position: absolute;
    top: 40px; /* Abaixo do menu */
    right: 0;
    width: 100%;
    z-index: 999;
    padding: 10px 0;
}

.mobile-menu .logs ul {
    flex-direction: column;
    align-items: flex-start;
}

.mobile-menu .logs ul li {
    margin-right: 0;
    padding: 10px;
    width: 100%;
   text-align: left;
    overflow: hidden;
}

.mobile-menu .logs ul li a {
padding: 10px;
display: flex;
    width: 100%; /* Ocupa toda a largura */
}
.menu {
    background-color: var(--cor-coc);
    display: flex;
    justify-content: space-around;
    align-items: center;
    width: 100%;
    height: 70px;
    color: white;
    margin: 0 auto;
 
}
.cl  .bt-remover , a {
    width: 90%;
}
.horarios-row {
    display: flex;
    width: 90%;
    flex-direction: row;
    gap: 5px;
    margin: auto;
}

#datas-lista {
width: 100%;
list-style: none;
}
#lista-datas {
    width: 100%;
}
#datas-lista li {
    padding: 5px;
    gap: 20px;
    text-align: left;
   border-bottom: 1px solid #ccc;
    }

    #datas-lista li button 
        {
            background-color:    var(--cor-perigo);
            color:white;
            text-decoration: none;
            font-size: 12pt;
            cursor: pointer;
            margin-left: 10px;
            border: none;
            padding: 4px;
            border-radius: 10px;
        }


.imprimir {
    background-color: var(--cor-azul);
    padding: 7px;
    text-decoration: none;
    border-radius: 10px;
    color: white;
    cursor: pointer;
    width: 100px;
}
.form-group {
    display: flex;
    justify-content: left;
    align-items: first baseline;
}
.logout  {
    background-color: var(--cor-segundaria);
    padding: 7px;
    text-decoration: none;
    border-radius: 10px;
    color: white;
    width: 100px;
    cursor: pointer;
}

.logs {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    width: 40%;
}


.form-container {
    display: flex;
    background-color: #ffffff;
    border-radius: 10px;
    overflow: hidden;
}

.form-left {
    background-color: #2b8a3e;
    padding: 30px;
    width: 40%;
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
}
  /* Estilo do botão On/Off */
  .switch {
    position: relative;
    display: inline-block;
    width: 40px;
    height: 24px;
    margin-bottom: 20px;
}
.formops {
    display: flex;
    flex-direction: row;
    gap: 5px;
    flex-wrap: nowrap;
}
.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: 0.4s;
    border-radius: 34px;
}

/* Estilos para o popup */
.uniquePopup {
    display: none; /* Inicialmente escondido */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Fundo semitransparente */
    align-items: center;
    flex-direction: column;
    gap: 5px;
    justify-content: center;
    z-index: 1000;
  }
  
  .uniquePopupContent {
    background-color: white;
    padding: 20px;
    border-radius: 5px;
    max-width: 500px;
    width: 80%;
    gap: 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  
  .obs-textarea {
    width: 100%;
    height: 150px;
    padding: 10px;
    font-size: 14px;
    border: 1px solid #ccc;
    border-radius: 4px;
  }

  .btn-mostrar-filtro {
    display: none;
}
.slider:before {
    position: absolute;
    content: "";
    height: 16px;
    width: 16px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: 0.4s;
    border-radius: 50%;
}

input:checked + .slider {
    background-color: #4caf50;
}

input:checked + .slider:before {
    transform: translateX(26px);
}

/* Div Observação */
#observacao {
    display: none;
}

#char-count {
    color: white;
    font-size: 0.8em;
}
.logo {
    width: 50%;
    margin-bottom: 20px;
}

form {
    display: flex;
    flex-direction: column;
    width: 100%;
}
form textarea {
width: 100%;

}

form input, form select, form textarea {
    padding: 10px;
    margin: 10px 0;
    border: none;
    border-radius: 5px;
    resize: none; /* Permite redimensionamento apenas verticalmente */

}
.logs ul {
    display: flex; 
    justify-content: flex-end;
    align-items: flex-end;
    flex-direction: row; /* Mantém os itens em linha */
    list-style: none; /* Remove as bolinhas ou marcas padrão da lista */
    width: 90%; /* Certifica-se de que a lista ocupe toda a largura disponível */
}
.btn-filtrar {
    margin: 0 auto;
}
.logs ul li {
    text-align: center;
    margin-right: 20px; /* Adiciona espaçamento entre os itens */
}

.logs ul li a {
    cursor: pointer;
    text-decoration: none; /* Remove o sublinhado dos links */
    color: white; /* Define a cor do texto como branco */
    padding: 10px; /* Adiciona espaçamento interno para os links */
    transition: background-color 0.3s; /* Efeito de transição suave para a cor de fundo */
}

.logs ul li a:hover {
    background-color: rgba(255, 255, 255, 0.2); /* Efeito de hover com cor de fundo */
    border-radius: 4px; /* Adiciona bordas arredondadas ao efeito de hover */
}

form button {
    padding: 12px;
    background-color: var(--cor-segundaria);
    border: none;
    color: #ffffff;
    font-weight: bold;
    cursor: pointer;
    border-radius: 5px;
    margin-top: 10px;
}

.form-right {
    padding: 30px;
    width: 60%;
}
.month-selector button {
    background: none;
    border: none;
    font-size: 14pt;
    color: white;
    cursor: pointer;

}
.month-selector {
    display: flex;
    justify-content: space-around;
    align-items: center;
    background-color: var(--cor-coc);
    color:white;
    font-size: 1.2em;
    padding: 15px;
    
    margin-bottom: 10px;
}
.weekdays {
    display: grid;
    grid-template-columns: repeat(7, 1fr); /* 5 colunas para os dias da semana */
    text-align: center;
    font-weight: bold; /* Destaque para o texto */
    padding: 10px 0; /* Padding para espaçamento */
}


.day {
    padding: 10px 0; /* Espaçamento superior e inferior */
    border-bottom: 1px solid #ccc; /* Borda inferior */
}
/* Estilo do filtro de busca */
.panel-container h1, p {
    text-align: center;
}
.filtrod {
    width: 30%;
    min-height: 653px;
    display: flex;
    text-align: center;
    flex-direction: column;
    justify-content: flex-start;
    align-items:flex-start;
    border-radius: 10px;
    margin: 0px auto;
    background-color: white;
text-align: left;
}
.filtrod h3 {
  margin: 0px auto;
  margin-top: 30px;
}
.filtro {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding: 5px;
    gap: 5px;
}

.filtro label {
    font-size: 14px;
    color: #333;
}

.filtro input[type="date"], select, input{
    padding: 5px;
    font-size: 14px;
    color: black;
    width: 90%;
    background-color: #F0F2F5;
    border: 1px solid #ccc;
    border-radius: 4px;
}



#horarios-disponiveis {
    display: grid;
    flex-direction: column;
    width: 100%;
    justify-content: space-around;
    gap: 5px;
    text-align: center;
}
.day {
    border: 1px solid #ccc;
    padding: 10px;
    cursor: pointer;
}

     /* Estilo para o popup */
     .popup-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        display: none;
        justify-content: center;
        align-items: center;
        z-index: 1000;
    }
    
    .popup-content {
        background: white;
        padding: 20px;
        border-radius: 8px;
        text-align: center;
        width: 80%;
        max-width: 400px;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    }

    .popup-content p {
        margin-bottom: 20px;
        font-size: 16px;
    }


    .popup-content button {
        padding: 10px 20px;
        background-color: #4CAF50;
        color: white;
        border: none;
        border-radius: 5px;
        cursor: pointer;
    }

    .popup-content button:hover {
        background-color: #45a049;
    }


.hours {
    background-color: #E8F1F3;
    border: 1px solid #ccc;
    margin:2px auto;
    margin-top: 10px;
    color: #333;
    border-radius: 10px;
    padding: 10px;
    cursor: pointer;

}

.hours-not {
    background-color: red;
    border: none;
    margin:5px auto;
    margin-top: 10px;
    color: white;
    border-radius: 10px;
    padding: 10px;
    cursor: default;

}

.nao-selecionavel {
    opacity: 0.3;
    pointer-events: none; /* Desabilita interações */
}
.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr); /* Ajustado para 5 colunas */
    text-align: center;
    font-size: 0.9em;
    margin-bottom: 20px;
}


.calendar-grid span {
    padding: 10px;
}
.selecionado {
    background-color: var(--cor-coc);
    color: white;
    border: none;
}
.indisponivel {
    opacity: 0.7;
    border: #DBDBDB 1px solid;
    background-color: white;
    cursor: default;
    display: flex;
    color: #ccc;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.unavailable {
    width: 10px; /* Largura do ponto */
    height: 10px; /* Altura do ponto */
    background-color: red; /* Cor do ponto */
    border-radius: 50%;
    opacity: 1; /* Para que fique redondo */
}


.times {
    margin-top: 20px;
}

.time-slot {
    display: inline-block;
    background-color: #e0f7fa;
    color: #333;
    padding: 10px;
    border-radius: 5px;
    margin: 5px;
    cursor: pointer;
}

.time-slot.unavailable {
    background-color: #ffcccb;
    color: #ffffff;
}

.legend {
    font-size: 0.9em;
    margin-top: 10px;
}

.legend-icon {
    display: inline-block;
    width: 10px;
    height: 10px;
    background-color: red;
    border-radius: 50%;
    margin-right: 5px;
    vertical-align: middle;
}
.formc {
    margin: auto;
    width: 100%;
}

.formc label {
    width: 80%;
}

 /* Estilos para a página do painel */
 .panel-container {
    width: 90%;
    min-height: 653px;
    padding: 20px;
    border-radius: 8px;
    background-color: white;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
.status {
    width: 90%;
    border: #ccc solid 1px;
    background-color: #F0F2F5;
    height:40px;
    border-radius: 10px;
    font-size:13pt;
}
.day-group {
    margin-bottom: 20px;
}
.cl {
    display: flex;
    flex-direction: column;
    gap: 5px;
    border-left: 1px solid #ccc;
    justify-content: left;
    align-items: last baseline;
    width: 40%;
    padding-left: 10px;
}
.day-title {
    font-size: 1.5em;
    color: #333;
    margin-bottom: 10px;
    border-bottom: 2px solid #4CAF50;
    padding-bottom: 5px;
}
.horas {
    background-color: #ccc;
    padding: 10px;
    color: black;
    border-radius: 15px;
    text-align: center;
}
.appointment-list {
    list-style-type: none;
    padding: 0;
}

.appointment-item {
    padding: 10px;
    margin-bottom: 10px;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 5px;
    display: flex;
    justify-content: space-between;
}


/* sistema kamban de status */

.contents {
    display: flex;
    flex-direction: row;
    gap: 20px;
    width: 100%;
    background-color: red;
}

.contentstatus {
   background-color: #F2F2F2;
   border: solid 1px #ccc;
   border-radius: 10px ;
   width: 350px;
}






.bts {
    margin-top: 30px;
    display: flex;
    flex-direction: row;
    width: 100%;
    justify-content: center;
    align-content: center;
    gap: 10px;
}
#qr-code {
    margin: auto;
    width: 200px;
}
#qr-code-container {
    width: 90%;
    margin-top: 20px;
    margin: auto;
    height: 100%;
}

#qr-code-container img {
    margin-top: 20px;
}
.contentwp {
    margin: auto;
    display: flex;
    flex-direction: column;
    margin: auto;
    padding: 10px;
    text-align: center;
}
.wps {
    background-color: white;
    width: 50%;
    padding: 35px;
    display: flex;
    flex-direction: column;
    margin: 0px auto;

}

#bot-status {
    background-color: #F0F2F5;
    font-size: 13pt;

    padding: 5px;
    margin: 30px auto;
    border-radius: 10px;

}

.connected {
    background-color: green;
    color: white;
    padding: 5px;
    margin: auto;
    display: none;
    border-radius: 20px;
}

.desconnected {
    background-color: red;
    color: white;
    padding: 5px;
    margin: auto;
    border-radius: 20px;
}
.date-p {
    width: 100%;
    display: flex;
    flex-direction: row;
    gap: 4px;
    margin: auto;
    justify-content: center;
    align-items: flex-start;
}
.date-container  {
    background-color: white;
    padding: 20px;
    display: flex;
    flex-direction: column;
    width: 100%;
    text-align: left;
    border-radius: 10px;
    margin: auto;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.date-container  input{
    background-color: #F0F2F5;
    border-radius: 10px;
    width: 90%;
}
.col-borda {
    border-right: 1px dashed #ccc;
    width: 100%;
        flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    display: flex;
     padding-right: 10px;
}
#lista-datas {
    padding: 10px;
}
.col-50 {
    width: 50%;


}
.avatar {
    width: 30px;
    height: 30px;
    border-radius: 40px;
    border: solid 2px white;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}
.mark {
    background-color: var(--cor-destaque);
    padding: 5px;
    text-align: center;
    border-radius: 30px;
      min-width: 320px;
    display: flex;
    gap: 4px;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    width: 90%;
    color: white;
}
.appointment-details {
    font-size: 1em;
    color: #666;
}
.bt-wp img {
    width: 15px;
}
.btn-ligar svg {
    background-color: var(--cor-azul);
    width: 20px;
    height: 20px;
    color: white;
    padding: 2px;
    border-radius: 20px;
}
.btn-ligar {
    background-color: var(--cor-botaos);
    color: black;
    cursor: pointer;
    text-decoration: none;
    font-size: 13pt;
    padding: 6px;
    border-radius: 10px;
    border: 1px solid #ccc;
    justify-content: flex-start;
    text-align: left;
    align-items: center; 

}
.bt-wp svg {
    background-color: #00B090;
    width: 20px;
    height: 20px;
    color: white;
    padding: 2px;
    border-radius: 20px;
}

.bt-wp {
    background-color:var(--cor-botaos);
    color: black;
    text-decoration: none;
    border: none;
    font-size: 13pt;
    padding: 7px;
    cursor: pointer;
    border-radius: 10px;
    border: 1px solid #ccc;
    justify-content: flex-start;
    text-align: left;
    align-items: center;
}


.bt-data {
    background-color:var(--cor-botaos);
    color: black;
    text-decoration: none;
    border: none;
    font-size: 13pt;
    padding: 7px;
    cursor: pointer;
    border-radius: 10px;
    border: 1px solid #ccc;
    justify-content: flex-start;
    text-align: center;
    align-items: center;
}
.btn-reagendar {
    background-color: var(--cor-botaos);
    color: black;
    text-decoration: none;
    font-size: 13pt;
    padding: 6px;
    gap: 5px;
    cursor: pointer;
    text-align: left;
    display: flex;
    border: 1px solid #ccc;
    justify-content: flex-start;
    text-align: left;
    align-items: center;
    border-radius: 10px;
}
.btn-reagendar svg {
    background-color: #924DA0;
    width: 20px;
    height: 20px;
    color: white;
    padding: 2px;
    border-radius: 20px;
}
.btn-filtrar {
    background-color: var(--cor-botaos);
    color: black;
    border: 1px solid #ccc;
    width: 90%;
    cursor: pointer;
    text-decoration: none;
    font-size: 12pt;
    padding: 6px;
    border-radius: 10px;

}
.btn-obs {
    background-color: var(--cor-azul);
    color: white;
    cursor: pointer;
    text-decoration: none;
    font-size: 13pt;
    padding: 6px;
    border-radius: 10px;

}

.bt-remover img {
    width: 15px;
}
.infos {
flex-direction: row;
    display: flex;
    width: 60%;
    justify-content:first baseline;
    align-items: baseline;

}

.deta {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: left;
    gap: 5px;
    height: 100%;
}
.bt-remover {
    background-color:    var(--cor-perigo);
    color:white;
    text-decoration: none;
    font-size: 13pt;
    border: none;
    cursor: pointer;
    margin: auto;
    width: 100%;
    padding: 7px;
    border-radius: 10px;
}

/* pagina de Login */


.login-d {
    background-color: white;
    padding: 20px;
    display: flex;
    flex-direction: column;
    width: 50%;
    text-align: left;
    border-radius: 10px;
    margin: auto;
    justify-content: center;
    align-items: center;
    gap: 20px;
}
.hlogin {
    width: 100%;
    background-color: var(--cor-coc);
    height: 150px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 10px;
}
.login-d input{
    background-color: #F0F2F5;
    border-radius: 10px;
    width: 90%;
    margin: 10px auto;
}

.btn-entrar {

    background-color: var(--cor-coc);
    color:white;
    width: 70%;
    margin: 20px auto;
    font-size: 15pt;

}

 /* Estilos do popup */
 .popup {
    display: none;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    justify-content: center;
    align-items: center;
}
.popup-content {
    background-color: #fff;
    padding: 20px;
    border-radius: 5px;
    text-align: center;
}
.ajuda {
    background-color: var( --cor-destaque);
    color: white;
    border-radius: 10px;
    font-size: 11pt;
    width: 80%;
    margin: auto;
    padding: 5px;
}
.close-btn {
    cursor: pointer;
    margin-top: 10px;
    padding: 10px 20px;
    background-color: var( --cor-destaque) !important;
    color: white;
    border: none;
    border-radius: 5px;
}

/* Estilos para o popup */
.popup-imprimir {
    display: none; /* Oculto por padrão */
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.6); /* Fundo escuro semi-transparente */
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}
  /* Estilo para quando o textarea está desabilitado */
  .obs-textarea:disabled + .edit-label {
    color: #888;
}

/* Estilo para quando o textarea é ativado */
.obs-textarea:enabled + .edit-label {
    display: none;
}
.edit-label {
    position: absolute;
    top: 10px;
    left: 12px;
    font-size: 14px;
    color: #888;
    pointer-events: none; /* Impede que a label seja clicada */
    transition: 0.3s;
}
  /* Exemplo de efeito ao passar o mouse */
  .obs-textarea:disabled:hover + .edit-label {
    color: #555;
}
.textarea-container {
    position: relative;
}
#obsTextarea {
    cursor: url('img/pencil-fill.svg') 12 12, auto;
    resize: none;
    width: 100%;
    height: 100px;
    padding: 10px;
    font-size: 14px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.popup-imprimir .popup-content {
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    width: 80%;
    height: 450px;
    gap: 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    max-width: 500px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    text-align: center;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.user {
    display: flex;
    flex-direction: row;
    gap: 5px;
    justify-content: center;
    align-items: center;
}
.user-profile {
    height: 40px;
    border-radius: 30px;
    width: 40px;
background-position: center;
background-repeat: no-repeat;
background-size: cover;
border: 2px solid white;
background-color: gray;
}
.popup-imprimir .close-btn {
    float: right;
    font-size: 20px;
    cursor: pointer;
}

#agendamentos {
    max-height: 550px;
    overflow-x: hidden; /* Oculta o scroll no eixo X */
    overflow-y: scroll; /* Permite o scroll no eixo Y */
}
.nenhum {
    margin: auto;
    width: 100%;
    display: flex;
    flex-direction: column;
    text-align: center;
    padding: 40px;
    justify-content: center;
    align-items: center;
    font-weight: 600;
}
.nada {
width: 200px;
font-weight: 600;
justify-content: center;
align-items: center;
text-align: center;
margin: auto;
}
 /* Estilo da barra de rolagem no Firefox */
#agendamentos {
    scrollbar-color: #ccc #F0F2F5;  /* Cor do thumb e do fundo */
    scrollbar-width: thin;  /* Largura fina da barra de rolagem */
}

/* Estilo da barra de rolagem no Chrome, Edge, Safari */
#agendamentos::-webkit-scrollbar {
    width: 8px;  /* Largura da barra de rolagem */
}

#agendamentos::-webkit-scrollbar-thumb {
    background-color: var(--cor-coc);  /* Cor do thumb */
    border-radius: 10px;  /* Bordas arredondadas no thumb */
}

#agendamentos::-webkit-scrollbar-track {
    background-color: #F0F2F5;  /* Cor de fundo da barra de rolagem */
    border-radius: 10px;  /* Bordas arredondadas na trilha */
}


/* Estilos para a sobreposição de fundo */
#reagendar-modal {
    display: none; /* Oculto por padrão */
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.6); /* Fundo escuro semi-transparente */
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

/* Estilos do conteúdo do modal */
#reagendar-modal .modal-content {
    background: #fff;
    padding: 20px 30px;
    border-radius: 8px;
    width: 100%;
    max-width: 500px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    text-align: center;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}


/* Título do modal */
#reagendar-modal h2 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #333;
}

/* Estilos para o formulário dentro do modal */
#reagendar-modal form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

/* Campos de entrada */
#reagendar-modal input[type="date"],
#reagendar-modal select {
    width: 100%;
    padding: 10px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 4px;
    transition: border-color 0.3s;
}

/* Efeito de foco nos campos */
#reagendar-modal input[type="date"]:focus,
#reagendar-modal select:focus {
    border-color: var( --cor-destaque);
}

/* Botões de ação */
#reagendar-modal .modal-buttons {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
}

/* Botão de confirmação */
 .btn-confirmar {
    background: var(--cor-coc) !important;
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s;
}

 .btn-confirmar:hover {
    background: var(--cor-coc);
}

/* Botão de fechar */
 .btn-fechar {
    background: var(--cor-perigo) !important;
    color: white  !important;
    padding: 10px 20px  !important;
    border: none  !important;
    border-radius: 4px  !important;
    font-size: 16px  !important;
    cursor: pointer  !important;
    transition: background-color 0.3s  !important;
}

#reagendar-modal .btn-fechar:hover {
    background: #aaa;
}

/* Estilos para tablets (largura máxima de 1024px) */
@media (max-width: 1024px) {
    .container, .containerp, .panel-container {
        width: 90%;
    }
 .popup-imprimir {
    width: 100%;
    height: 100%;
}
    .menu {
        flex-direction: column;
        height: auto;
        padding: 10px;
    }

    .form-container {
        flex-direction: column;
    }

    .form-left, .form-right {
        width: 100%;
    }

    .popup-content {
        width: 90%;
    }
    .btn-filtrar {
        content: '>';
    }
}

/* Estilos para dispositivos móveis (largura máxima de 768px) */
@media (max-width: 768px) {
    .date-p {
        width: 100%;
        flex-direction: column;
    }
    .col-borda {
        border: none;
    }
.col-50 {
    width: 100%;
}
    body {
        margin: 50px auto;
    }
    .logs ul li a { 


        padding: 0px;
    }
    #datas-lista li {
        font-size: 1em;
        text-align: center;
    }
    .logs ul { 
justify-content: space-around;
    }
    .containerp {
flex-direction: column;

    }
    .filtrod {
        display: none;
        min-height: 400px;
    }
    .btn-mostrar-filtro {
        display: block;
    }
    .container, .containerp, .panel-container {
        width: 100%;
    }

    .h1 {
        font-size: 1.5em;
    }
    .user {
        display: none;
    }
    .desktop-menu {
        display: none; /* Oculta o menu desktop no mobile */
    }
    .mobile-menu {
        display: flex; /* Exibe o menu mobile */
        justify-content: space-between;
        align-items: center;
        width: 100%;
    }
    .menu {
        flex-direction: column;
        justify-content: center;
        padding: 10px;
    }

    .logs ul {
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    .form-container {
        flex-direction: column;
    }

    .form-left, .form-right {
        width: 100%;
        padding: 20px;
    }

    .form-left {
        padding: 15px;
    }

    .logo {
        width: 70%;
    }

    form input, form select {
        padding: 8px;
    }

    form button {
        padding: 10px;
        font-size: 1em;
    }
.hours {
   font-size: 0.7em;
}
    .month-selector {
        font-size: 1em;
        padding: 10px;
    }

    .weekdays {
        font-size: 0.8em;
    }

    #horarios-disponiveis {
        flex-direction: column;
        width: 90%;
        gap: 2px;
        margin: auto;
    }

    .popup-content {
        width: 90%;
        padding: 15px;
    }

    .login-d,.date-containe {
        width: 90%;
        display: flex;
        flex-direction: column;
        padding: 15px;
    }

    .btn-entrar {
        width: 80%;
    }

    .btn-reagendar {
        width: 80%;
    }

    .hlogin {
        height: 120px;
    }

    .infos, .cl {
        flex-direction: column;
        align-items: flex-start;
    }

    .deta {
        gap: 10px;
    }
    .filtrod {
        width: 100%;
    }
    .filtro {
        width: 100%;
        gap: 5px;
    }
   .filtro button {
    font-size: 0.8em;
    } 
    .filtro input[type="date"] {
        width: 30%;
        font-size: 0.8em;
        
    }
    .filtro label {
        font-size: 0.7em;
    }
}

/* Estilos para dispositivos menores (largura máxima de 480px) */
@media (max-width: 480px) {
    h1 {
        font-size: 1.4em;
        width: 90%;
        text-align: center;
        margin: 20px auto;
    }
    body {
    margin: 0px auto;
    }
    .filtrod {
        display: none;
    }
    .btn-mostrar-filtro {
        display: block;
    }
    .panel-container {
        width: 100%;
    }
    .date-container {
        display: flex;
        flex-direction: column;
    }
    .container {
     
        margin: 40px auto;
    }
    .logs {
        width: 50%;
    }
    .user {
        width: 40%;
    }
    .menu {
        font-size: 0.9em;
        width: 100%;
        display: flex;
        margin: 0 auto;
        flex-direction: row;
        justify-content: space-around;
    }

    .popup-content button {
        padding: 8px 15px;
        font-size: 0.9em;
    }

    .day-title {
        font-size: 1.2em;
    }
.mark {
    font-size: 0.9em;
    text-align: center;
}
    .time-slot {
        padding: 8px;
        font-size: 0.9em;
    }

    .btn-ligar, .btn-filtrar, #datas-lista button, .bt-wp, .bt-remover , .btn-obs, .btn-reagendar {
        font-size: 10pt;
        padding: 5px;
        width: 90%;
    }
    .status {
        font-size: 10pt;
        padding: 5px;
    }

    .login-d, .date-container input {
        width: 100%;
    }
.logo {
    margin: 20px auto;
    width: 150px;
}
    .btn-entrar {
        font-size: 14pt;
        padding: 10px;
    }
.panel-container {
    width: 100%;
    padding: 10px;
}
.appointment-details {
    font-size: 0.7em;
}
.form-container{
    flex-direction: column-reverse;
}
    .ajuda, .close-btn {
        font-size: 10pt;
        padding: 8px;
    }
    .horarios-row {
        display: flex;
        flex-direction: row;
        gap: 5px;
        width: 90%;
    }
    #horarios-disponiveis {
        display: flex;
        width: 100%;
        flex-direction: column;
        gap: 5px;
    }
}
