 /* Estilo para o item desabilitado no dropdown */
  .dropdown-item.disabled {
	color: #848484; /* Cor mais suave para o texto */
	background-color: transparent !important; /* Remove o efeito de hover */
	cursor: not-allowed; /* Muda o cursor para indicar "não clicável" */
	opacity: 0.7; /* Deixa o item um pouco transparente */
  }

  /* Garante que a cor do texto não mude no hover para itens desabilitados */
  .dropdown-item.disabled:hover,
  .dropdown-item.disabled:focus {
	color: #848484;
  }

  /* Cor do ícone de bloqueio (vermelho) */
  .disabled-icon path {
	fill: #dc3545; /* Um tom de vermelho para alerta */
  }
  
 /* Container do nosso seletor customizado */
.custom-select-wrapper {
	width: 100%;
	position: relative;
}

/* MUDANÇA AQUI: Estilo PADRÃO do botão que mostra a seleção */
.custom-select-wrapper .dropdown-toggle {
	width: 100%;
	background-color: #fff; /* Fundo branco por padrão */
	border: 1px solid #ced4da;
	color: #495057; /* Cor de texto padrão do Bootstrap */
	padding: 0.75rem 1rem;
	height: auto;
	white-space: normal;
	display: flex;
	align-items: center;
	transition: background-color 0.2s ease-in-out;
}

/* NOVO: Estilo do botão QUANDO UMA OPÇÃO FOI SELECIONADA */
.custom-select-wrapper .dropdown-toggle.selected {
	background-color: #e2efd8; /* Fundo verde do item selecionado */
}

/* Texto do placeholder com uma cor mais suave */
.custom-select-wrapper .placeholder {
	color: #6c757d;
}



.custom-select-wrapper .dropdown-toggle::after {
	display: none; /* Esconde a seta padrão */
}

/* Estilo do menu com as opções */
.custom-select-wrapper .dropdown-menu {
	width: 100%;
	padding: 0;
}

/* Estilo de cada opção na lista */
.custom-select-wrapper .dropdown-item {
	display: flex;
	align-items: flex-start;
	padding: 0.75rem 1rem;
	border-bottom: 1px solid #f0f0f0;
	white-space: normal;
	cursor: pointer;
}

.custom-select-wrapper .dropdown-item:last-child {
	border-bottom: none;
}

.custom-select-wrapper .dropdown-item:hover {
	background-color: #f8f9fa;
}

.custom-select-wrapper .dropdown-item.active {
	background-color: #e2efd8;
}

/* Estilos dos textos e ícones (idêntico à resposta anterior) */
.item-title {
	font-weight: bold;
	color: #333;
	font-size: 13px;
}

.item-subtitle, .item-hours {
	font-size: 12px;
	color: #6c757d;
}

.location-icon {
	flex-shrink: 0; /* Impede que o ícone seja esmagado */
}

.location-icon path {
	fill: #848484; /* Cor cinza padrão */
}

/* Ícone fica verde quando o item está ativo/selecionado */
.active .location-icon path,
.dropdown-toggle .location-icon path {
	fill: #6a8a4f; /* Cor verde escura */
}



#notificacao {
	color: #ffffff !important;
	font-size: 16px;
	padding: 30px 10px;
	margin: auto;
	margin-bottom: 10px;
	border: none;
	border-radius: 10px;
	text-align: center;
	
	  width: 90%;
	  max-width: 600px;
	
	
}

#notificacao .lni {
	font-size: 40px;
	margin-bottom: 20px;
}

#notificacao p {
	
	color: #ffffff;
	font-size: 16px;
	padding: 20px 20px;
	
}
#notificacao h4 {
	color: #ffffff;
	font-size: 24px;
}

#notificacao .cupomDestaque {
	backdrop-filter: contrast(0.75);
	margin: 20px 30px;
	padding: 20px;
	font-size: 38px;
	border-radius: 10px;
	font-weight: bold;
}


#notificacao .cupomDestaque p {
	padding: 10px;
	text-align: left;
	font-size: 14px;
	font-weight: normal;
	color: #ffffff;
	letter-spacing: -0.5px;
}


#notificacao.success {
	background-color: #37b8c8;
}
#notificacao.warning {
	background-color: orange;
}
#notificacao::backdrop {
	background-color: #5a5a5a7c;
}

#notificacao button {
	background-color: #efefef;
	color: #000;
	font-size: 12px;
	text-transform: uppercase;
	font-weight: bold;
	padding: 5px 10px;
	border: none;
	transition: .4s;
	outline: none;
	width: 85%;
	border-radius: 5px;
	padding: 10px 0px;
}

#notificacao button:hover {
	transform: scale(1.05);
}

.dialog-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}

