.wrap {
  margin: 0; 
  padding: 0;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.content {
    flex: 1;
    position: relative;
    width: calc(100% - 200px);
    height: auto;
    min-height: 600px;
    left: 200px;
    padding: 80px;
    box-sizing: border-box;
}



.notifications {
  width: 100%;
  height: auto;
  /* border-radius: 8px; */
  background-color: white;
  /* border: 1px solid #333; */
  margin-bottom: 80px;
  border-bottom: 2px solid #333;

}

.notifications h4 {
  color: #333;
  font-size: 15px;
  margin: 20px;
  text-align: center;
}

ul.actions {
  margin: 0;
  padding: 0;
  list-style: none;
}

ul.actions li {
  display: flex;
  justify-content: space-between; /* Espalha as divs uniformemente */
  width: 100%;
  border-top: 1px solid #333;
}


ul.actions li div.col {
  flex: 1;
  height: 100px;
  /* border-right: 1px solid #333; */
  margin: 0 5px;
  color: #333;
  display: flex;
  justify-content: center; /* Centraliza horizontalmente */
  align-items: center; /* Centraliza verticalmente */
  text-align: center; /* Centraliza o texto dentro da div */
}

ul.actions li div.col .imgProfile {
  width: 40px;
  height: 40px;
  display: inline-block;
  border-radius: 100%;

}

ul.actions li div.col .imgProfile img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 100%;
}

ul.actions li div.col h4 {
  font-size: 16px;
}

ul.actions li div.col h4 span {
  font-weight: 300;
  font-size: 13px;
} 

ul.actions li div.col button {
  width: auto;
  padding: 10px 14px;
  background-color: white;
  border-radius: 8px;
  color: #333;
  border: 1px solid gainsboro;
  margin: 3px;
  font-size: 14px;
}

div.num {
  position: relative; 
  width: 25px;
  height: 25px;
  margin: 5px;
  line-height: 25px;
  background-color: red;
  color: white;
  font-size: 13px;
  border-radius: 100px;
}

div.money {
  position: relative; 
  color: #444;
  font-size: 20px;
}

ul.actions li div.col button.rose {
  color: #333;
  background-color:#ffd1d5; 
}

ul.actions li div.col button.green {
  background-color: #cbddb5;
  color: #333;
}

ul.actions li div.col button:hover {
  border: 1px solid black;
}

.filter {
  position: relative;
  width: 100%;
  height: 60px;
  border-bottom: 1px solid #333;
  color: #333;
}

.filter .period {
  position: absolute;
  left: 0; 
  top: 0;
}

.filter input {
  position: relative;
  width: 90px;
  padding: 0;
  border: none; 
  /* border-bottom: 1px solid #333; */
  border-radius: 0;
}

select.art {
  cursor: pointer;
  position: absolute;
  top: 10px;
  right: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  margin: auto;
  padding: 10px 15px;
  font-size: 18px;
  border-radius: 0;
  border: none;
  outline: none;
  background-color: transparent;
  padding-right: 30px; /* Deixa espaço para a seta */
  background-image: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTYiIGhlaWdodD0iOCIgdmlld0JveD0iMCAwIDE2IDgiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PHBhdGggZD0iTTEgMS43NUw4IDcuMjUgMTUgMS43NUgxWiIgc3Ryb2tlPSIjNEM0QzREIiBzdHJva2Utd2lkdGg9IjIiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCIgLz48L3N2Zz4=');
  background-repeat: no-repeat;
  background-position: right 10px center;
  background-size: 12px;
}

.bigNumbers {
  width: 100%;
  height: auto;
}

.bigNumbers ul.money {
  margin: 0; 
  padding: 0;
  list-style: none;
}

.bigNumbers ul.money li {
  display: inline-block;
}

.bigNumbers ul.money li div.box {
  position: relative;
  border-radius: 8px;
  width: 350px;
  height: 200px;
  margin-right: 20px;
  margin-top: 40px;
  /* border: 1px solid #333; */
  background-color: white;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3); /* Adiciona a sombra */
} 

.bigNumbers ul.money li div.box .value {
  position: absolute;
  bottom: 60px;
  left: 40px;
  font-size: 40px;
  font-weight: 600;
  color: #333;
}

.bigNumbers ul.money li div.box .title {
  position: absolute;
  bottom: 38px;
  margin: 0; 
  padding: 0;
  left: 40px;
  font-size: 20px;
  font-weight: 300;
  color: #333;
}


.bigNumbers ul.info {
  width: 100%;
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap; /* Permite a quebra de linha */
  justify-content: space-between; /* Distribui o espaço igualmente */
}

.bigNumbers ul.info li {
flex: 1 1 200px; /* Permite que o item cresça, encolha, e tenha largura mínima de 200px */
margin: 0; /* Espaçamento entre os itens */
margin-right: 20px; /* Margem direita */
margin-top: 20px;
margin-bottom: 20px; 
}


.bigNumbers ul.info li div.box {
position: relative;
border-radius: 8px;
width: 100%; /* Faz a div preencher todo o espaço do li */
height: 150px; /* Altura fixa */
background-color: white;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3); /* Adiciona a sombra */
}

.bigNumbers ul.info li div.box .value {
position: absolute;
  bottom: 50px;
  left: 40px;
  font-size: 40px;
  font-weight: 600;
  color: #333;
}

.bigNumbers ul.info li div.box .title {
  position: absolute;
  bottom: 28px;
  left: 40px;
  margin: 0; 
  padding: 0;
  font-size: 20px;
  font-weight: 300;
  color: #333;
}

.calendar {
  margin: 80px 0;
  width: 100%;
  height: 400px;
}

#month-year {
  text-align: center;
  width: 300px;
}

.calendar .box-filter.date {
  position: relative;
  top: 0;
  display: inline-block;
  height: 350px;
  overflow: hidden;
  width: calc(100% - 60px);
  max-width: 50%;
  border-right: 1px solid #333;
}

.calendar .box-filter.date .month {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #333;
}

.calendar .box-filter.date .month h1 {
  width: auto;
  font-size: 18px;
}

.calendar .box-filter.date .month button {
  background-color: transparent;
  border: none;
  color: #333;
  font-size: 20px;
  cursor: pointer;
}

.calendar .box-filter.date .days,  
.calendar .box-filter.date .dates {
  position: relative;
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  padding: 10px 10px 0 10px;
  font-size: 12px;
  text-align: center;
}

.calendar .box-filter.date .days div {
  width: 30px;
  margin: auto;
  text-align: center;
  font-weight: 300;
  color: #333;
  padding: 5px;
}


.calendar .box-filter.date .dates div {
  position: relative;
  color: #333;
  padding: 10px;
  margin: auto;
  width: 20px;
  height: 20px;
  border-radius: 100%;
  font-size: 14px;
  background-color: transparent;
  cursor: pointer;
  border: 1px solid transparent; /* Borda transparente para manter o tamanho */
}

.calendar .box-filter.date .dates div.sel {
  border: 1px solid #333;
}


.calendar .box-filter.date .dates div.blocked {
  border: none;
  background-color: red;
  color: white;
}

.calendar .box-filter.date .dates div.plus {
  display: none;
}

.calendar .box-filter.date .dates > div:hover div.plus {
  font-size: 12px; 
  position: absolute; 
  display: block;
  top: -8px;
  right: -8px;
}


.calendar .box-filter.date .dates > div:hover:not(:empty) {
  border: 1px solid #333;
}

.nextShows {
  position: relative;
  display: inline-block;
  width: 49%;
  height: 100%;
  vertical-align: top;
  overflow-y: auto; /* Adiciona uma barra de rolagem horizontal quando necessário */
  white-space: nowrap; /* Impede que os itens se quebrem para a linha seguinte */
  scrollbar-width: none; /* Firefox: oculta a barra de rolagem */
  /* display: none; */
}

/* .nextShows ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 300px));
  gap: 5px;

}

.nextShows::-webkit-scrollbar {
  display: none; 
}

.nextShows ul li {
  padding: 2px;
  margin-left: 20px;
  display: flex;
  align-items: center; 
  margin-bottom: 15px; 
} */

.nextShows ul {
  list-style: none;
  padding: 0;
  max-width: 700px;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); /* Colunas responsivas */
  gap: 5px; /* Espaçamento uniforme entre colunas e linhas */
  margin-left: 30px;
}

.nextShows ul li {
  max-width: 300px; /* Limita a largura máxima de cada item da lista */
  padding: 2px;
  display: flex;
  align-items: center; /* Alinha verticalmente o conteúdo */
  margin-bottom: 15px; /* Espaçamento entre os itens da lista */
  width: 100%; /* Garante que a largura do item ocupe 100% do espaço disponível */
}

.nextShows::-webkit-scrollbar {
  display: none; /* Chrome, Safari e outros navegadores Webkit: oculta a barra de rolagem */
}

.sq {
  width: 60px; /* Define o tamanho do quadrado */
  height: 60px;
  background-color: black; /* Cor de fundo preta */
  display: flex;
  justify-content: center; /* Centraliza horizontalmente */
  align-items: center; /* Centraliza verticalmente */
  border-radius: 8px; /* Se quiser bordas arredondadas */
}

.dt {
  color: white; /* Cor do texto branca */
  font-size: 16px; /* Tamanho da fonte */
  text-align: center; /* Centraliza o texto dentro da div */
  line-height: 1.2; /* Ajuste do espaçamento entre as linhas */
  font-weight: 500;
}

.if {
  color: #333;
  font-size: 16px;
  margin-left: 10px;
  line-height: 1.2;
}

.if strong {
  font-weight: bold; /* Deixa "Ana Castela" em negrito */
}

.if button {
  margin-top: 4px;
  width: auto;
  padding: 2px 4px;
  background-color: white;
  border: 1px solid #333;
  color: #333;
  font-size: 12px;

}

@media (min-width: 900px) {
  .nextShows ul {
    grid-template-columns: repeat(3, 1fr);
  }
}

.chart-container {
  width: calc(100% - 40px);
  height: 500px; /* Aumenta a altura do gráfico */
  background-color: white;
  padding: 20px;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
} 






.popup {
text-align: center;
position: fixed;
z-index: 5;
left: 0; 
right: 0;
padding: 0;
margin: auto;
width: 400px;
height: auto;
background-color: white;
border-radius: 8px;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); 


}

.popup.middle {
width: 600px;
}


.popup .headerPop {
position: relative;
padding: 0;
top: 0;
left: 0; 
right: 0;
margin: 15px auto;
padding-top: 5px;
padding-bottom: 20px;
font-size: 15px;
color: #333;
font-weight: 500;
border-bottom: 1px solid #333;
}

.popup .headerPop img {
width: 20px;
vertical-align: middle;
margin-right: 5px;
}

.popup .contentPop {
position: relative;
margin: 50px;
}

.closePop {
position: absolute; 
z-index: 2;
top: 0; 
left: 0; 
margin: 15px 20px;
font-size: 16px;
font-weight: 500;
color: #333;
cursor: pointer;
}

.popup .contentPop button {
position: absolute;
top: 30px; 
left: 120px;
width: auto;
padding: 8px 12px;
color: #333;
background-color: white;
border: 1px solid #333;
font-size: 14px;
}


.event {
position: relative;
width: 100%;
height: auto;
border: 1px solid #999; 
border-radius: 4px;
padding: 20px;
color: #333;
text-align: left;
box-sizing: border-box;
margin: 15px 0;
font-size: 14px;
}


.event h4 {
margin: 0; 
padding: 0;
font-size: 16px;
}

.event.disabled {
background-color: ghostwhite;
color: #999;
}

.event .i {
position: absolute;
bottom: 5px;
right: 5px;
font-size: 12px;
color: black;
}

.event .trash {
position: absolute; 
top: 10px;
right: 10px;
width: 15px;
height: 15px;
cursor: pointer;
}

.event .edit {
position: absolute; 
top: 10px;
right: 30px;
width: 15px;
height: 15px;
cursor: pointer;
}

.event .trash img,
.event .edit img {
position: absolute;
width: 100%;
height: 100%;
object-fit: contain;
}

.contentPop select.art  {
position: relative;
display: block;
}

.contentPop div.dte {
clear: both;
text-align: left;
float: left;
position: relative;
width: 200px;   
/* display: inline-block; */
color: #333;
margin: 20px 0 40px 0; 
}

.contentPop div.dte h4 {
display: inline-block;
font-size: 18px;
margin-bottom: 0; 
padding-bottom: 0;
text-align: center;
} 

.contentPop .user-artist {
margin-top: 30px;
}

.contentPop .user-artist select {
left: 0; 
float: left;
padding: 10px 0;
margin-bottom: 30px;
width: 300px;
border-bottom: 1px solid #333;
}

.contentPop div.ticket select {
width: auto;
width: 100px;
border: 0; 
border-radius: 0;
border-bottom: 1px solid #333;
padding: 10px;
margin: 0;
}

.ticket {
width: 100%;
text-align: left;
margin-top: 30px;
}

.ticket label {
color: black;
display: block;
}

.ticket input {
width: 100%;
color: black;
display: block;
border: 0;
border-bottom: 1px solid #333;
border-radius: 0;
padding-left: 0;
}

.contentPop .actionBt {
position: relative;
height: 60px;
width: 100%;
margin: 30px 0;
}

.contentPop button.linkExtern {
position: relative; 
clear: both;
display: none;
background-color: black;
color: white;
margin: 0;
left: 0; 
right: 0;
float: left;
}

.popup .i-ds,
.popup .err {
  clear: both;
  color: #333;
  font-size: 12px;
}

.popup .err {
  color: red;
}

#exs-link {
  /* border-top: 1px solid #333; */
  display: block;
}

.ex-link {
  position: relative;
  border-bottom: 1px solid #333;
  /* border: 1px solid #333;  */
  /* border-radius: 4px;  */
  padding: 5px 15px 20px 15px; 
  color: #333; 
  text-align: left; 
  margin: 5px 0;
}

.ex-link-trash {
  position: absolute;
  bottom: 10px;
  right: 10px;
  width: 20px;
  height: 20px;
  cursor: pointer;
}

.ex-link-trash  img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.ex-link .ex-link-ex {
  position: relative;
  padding: 6px;
  font-size: 12px;
  width: unset;
  color: green; 
  border: 1px solid green;
  border-radius: 4px;
  display: inline-block; /* Adjust width to content + padding */
}

#block-agenda {
  position: relative; 
  display: none; 
  width: 100%; 
  height: 40px; 
  clear: both; 
  text-align: left; 
  border-bottom: 1px ghostwhite #333;
  padding-bottom: 5px;
}

#info-agenda {
  display: none;
}

/* Container do toggle */
.toggle-container {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  width: 50px;
  height: 28px;
  margin-left: 10px;
}

/* Input Checkbox */
.toggle-input {
  display: none;
}

/* Label para o Toggle */
.toggle-label {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #ccc;
  border-radius: 14px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

/* Botão deslizante */
.toggle-label::after {
  content: "";
  position: absolute;
  top: 2px;
  left: 2px;
  width: 24px;
  height: 24px;
  background-color: #fff;
  border-radius: 50%;
  transition: transform 0.3s ease;
}

/* Estilos para o estado habilitado */
.toggle-input:checked + .toggle-label {
  background-color: #4cd964; /* Cor do toggle ativado */
}

.toggle-input:checked + .toggle-label::after {
  transform: translateX(22px);
}

.circle-red {
  width: 20px;
  height: 20px;
  border-radius: 100px;
  border: 1px solid red;
  background-color: #ffd1d5;
  display: inline-block;
  vertical-align: middle;
}


.popup.medium .contentPop .proposal {
  position: relative;
  display: inline-block;
  font-weight: 600;
  font-size: 28px;
  color: #333;
  }
  
  .popup.medium .contentPop .sendProposal {
    position: relative;
    display: block;
    text-align: center;
    width: 100%;
    margin: 20px 0;
    height: auto;
  }

  .popup.medium .contentPop .sendProposal button {
    position: relative;
    left: 0; 
    right: 0;
    display: inline-block;
    color: white;
    width: auto;
    background-color: black;
    padding: 8px 12px;
    margin: 10px auto;
  
  }
  
  .popup.medium .contentPop .sendProposal h4 {
  color: #333;
  font-size: 14px;
  font-weight: 500;
  }

  