/*
		--- Versionamento ---
		11/08/2025 - César - Solicitação 22455
		--- Fim Versionamento ---
*/


.resumo-busca{
    margin: 8px 0 16px;
    color: #333;
    font-size: 15px;
}

.lista-resultados-busca{
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
}

.resultado-busca{
    border: 1px solid #e6e6e6;
    border-radius: 6px;
    padding: 12px 14px;
    background: #fff;
    box-shadow: 0 1px 2px rgba(0,0,0,0.03);
    color: #444;
    font-size: 16px;
}

.resultado-busca:hover{
    border-color: #dcdcdc;
    box-shadow: 0 2px 6px rgba(0,0,0,0.06);
    transition: box-shadow .15s ease, border-color .15s ease;
}

/* suporte para marcação do termo */
mark{
	background: #fff59d;
	padding: 0 2px;
}

/* Sistema de abas */
.abas-busca{
	margin: 20px 0;
}

.navegacao-abas{
	display: flex;
	flex-wrap: wrap;
	gap: 5px;
	margin-bottom: 20px;
	border-bottom: 2px solid #e6e6e6;
	padding-bottom: 10px;
}

.aba-btn{
	background: #f8f9fa;
	border: 1px solid #dee2e6;
	border-radius: 6px 6px 0 0;
	padding: 10px 16px;
	cursor: pointer;
	font-size: 14px;
	color: #6c757d;
	transition: all 0.2s ease;
	border-bottom: none;
}

.aba-btn:hover{
	background: #e9ecef;
	color: #495057;
}

.aba-btn.ativo{
	background: #007bff;
	color: white;
	border-color: #007bff;
}

.conteudo-abas{
	position: relative;
}

.aba-conteudo{
	display: none;
	opacity: 0;
	transition: opacity 0.2s ease-in-out;
}

.aba-conteudo.ativo{
	display: block;
	opacity: 1;
}

/* Mensagem quando não há resultados em uma aba */
.sem-resultados{
	text-align: center;
	padding: 40px 20px;
	color: #666;
	font-size: 16px;
	background: #f8f9fa;
	border-radius: 6px;
	border: 1px dashed #dee2e6;
	margin: 20px 0;
}

.sem-resultados strong{
	color: #333;
}


/*Area busca generica*/
.lightbox{
	background: #ccc9;
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	display: none;
}

.lightbox-titulo{
	height: 30px;
	padding: 10px;
	text-transform: uppercase;
	background: #50bde1;
	border-radius: 5px 5px 0 0;
}

.wrap-lightbox{
	position: relative;
	left: 25%;
	width: 50%;
	top: 15%;
}

.fechar-lightbox{
	display: inline-block;
	width: 20px;
	cursor: pointer;
	font-weight: bold;
}

.texto-titulo{
	display: inline-block;
}

.lightbox-busca{
	width: 100%;
}

.lightbox-busca input{
	height: 45px;
	border-top: 1px solid #ddd7d7;
	padding: 10px;
	width: 100%;
	border-bottom: 1px solid #ddd7d7;
	border-left: 0;
	border-radius: 0;
}

#lightbox-content{
	padding: 10px;
	background: #fff;
	max-height: 300px;
	overflow: auto;
}

#lightbox-send{
	background: #24282a;
	height: 50px;
	border-radius: 0 0 5px 5px;
}

#send-button{
	position: absolute;
	right: 20px;
	bottom: 15px;
}

#send-button img{
	transform: rotate(36deg);
	cursor: pointer;
}

.table{width:100%;max-width:100%;margin-bottom:2rem;background-color:transparent}

.table th{vertical-align:bottom;border-bottom:1px solid #dee2e6;text-align:left;}