.messages-input-form .buttons .btn {
	height: 60px !important;
	margin-right: 0px !important;
	margin-top: 0px !important;
}

.messages .stripped-right > div {
	margin-right:0!important;
	background-color:#EEF1F4;
}

.row-topo > div {
	padding: 0 10px;
}

.foto-agente {
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 100%;
	max-width: 50px!important;
}

.text-break {
	word-break: break-word;
}

/* Overlay que cobre toda a tela */
.processing-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.5); /* Fundo semitransparente */
	display: flex;
	justify-content: center;
	align-items: center;
	z-index: 9999;
	color: #fff;
	font-family: Arial, sans-serif;
}

/* Estilo do spinner */
.spinner {
	border: 5px solid rgba(255, 255, 255, 0.3);
	border-top: 5px solid #fff;
	border-radius: 50%;
	width: 50px;
	height: 50px;
	animation: spin 1s linear infinite;
	margin-bottom: 20px;
}

/* Animação do spinner */
@keyframes spin {
	from {
		transform: rotate(0deg);
	}
	to {
		transform: rotate(360deg);
	}
}
