.header-bar {
	display: flex;
	justify-content: space-between;
	align-items: center;
	/*background-color: #350857;*/
	background-color: #3A0A5E !important; 
	padding: 10px 40px 10px 15px;
	width: 100%;
	margin-right: 8px;
}

.header-bar .mdl-layout__drawer-button {
	background: transparent;
	/*color: #767777;*/
	color: #ffffff;
}

.mdl-layout__header {
	-ms-flex-direction: row !important;
	flex-direction: row !important;
}

.header-left {
	gap: 5px;
	min-width: 200px; /* Ajusta según sea necesario */
	    margin-right: 10px;
}

.mdl-navigation {
	visibility: hidden;
	min-height: 45px;
}

.mdl-layout.is-upgraded .mdl-navigation {
	visibility: visible;
}

.btn_barra_nav {
	background-color: #734a91;
	color: white;
	padding: 8px 8px;
	border: none;
	border-radius: 2px;
	text-decoration: none;
	font-size: 14px;
	cursor: pointer;
}

.btn_barra_nav:hover {
	background-color: white !important;
	color: #3A0A5E !important;
}

.header-right {
	display: flex;
	align-items: center;
	gap: 10px;
    flex-shrink: 0; /* Evita que se reduzca cuando hay menos espacio */
}

.search-form {
	position: relative;
}

.search-input {
	padding: 8px 5px 8px 10px;
	border: none;
	border-radius: 4px;
	width: 280px;
	font-size: 14px;
}

.search-input:focus {
	outline: none; /* Quita el contorno negro del navegador */
	box-shadow: none; /* Quita cualquier sombra interna */
	border: 1px solid #edd1ff;
}

.search-btn {
	position: absolute;
	right: 0;
	top: 0;
	bottom: 0;
	background: none;
	border: none;
	color: #333;
	padding: 0 10px;
	cursor: pointer;
}

.filtro-btn {
	padding: 5px 15px 5px 15px;
	background-color: #734a91;
	color: white;
	border: none;
	border-radius: 4px;
	text-decoration: none;
	font-size: 14px;
	cursor: pointer;
}

.filtro-btn:hover {
	background-color: rgb(255, 255, 255) !important;
	color: #350857 !important;
}
.android-mobile-title {
	display: none !important;
}

@media ( max-width : 1024px) and (min-width: 768px) {
	.search-input {
		width: 250px;
	}
	.header-bar {
		padding: 10px 10px 10px 45px;
	}
}

@media ( max-width : 768px) {
	.header-left {
		display: none;
	}
	.search-input {
		width: 100%;
	}
	.header-bar {
		flex-direction: column;
		align-items: flex-start;
		margin-left: 0;
		padding: 10px 10px 10px 45px;
	}
	.header-right {
		flex: 0 0 85%;
		max-width: 85%;
		display: flex;
		justify-content: flex-end;
		align-items: center;
		gap: 10px;
	}
	.search-form {
		flex: 1;
		margin-right: 10px;
	}
	.android-mobile-title {
		display: block !important;
		flex: 0 0 10%;
		max-width: 10%;
		top: 15px;
        transition: opacity 0.2s cubic-bezier(0.4, 0, 0.2, 1);
        position: absolute;
        margin-left: 5px;
	}
	.android-logo-image {
		max-width: 100%;
		height: auto;
	}

}