/************************************************************
1️⃣ VARIABLES
************************************************************/
:root {
	--mr-red: #FE0000;
	--mr-red-hover: #833000;
	--mr-green: #48A86B;
	--mr-disabled: #ececec;
	--mr-bg-card: #F3F4F6;
	--mr-text-dark: #27282c;
	--mr-text-light: #4b5563;
}

/************************************************************
USER MENU – VERSION FINAL CLEAN
************************************************************/

.mr-user-menu {
	position: relative;
	display: inline-block;
}

/* ICONO */
.mr-user-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 38px;
	height: 38px;
	border-radius: 50%;
	background: #f2f3f5;
	cursor: pointer;
	transition: background .2s ease;
}

.mr-user-icon svg {
	width: 16px;
	height: 16px;
	fill: var(--mr-text-dark);
	transition: fill .2s ease;
}

.mr-user-icon:hover {
	background: var(--mr-red);
}

.mr-user-icon:hover svg {
	fill: #ffffff;
}

/* DROPDOWN */
.mr-user-dropdown {
	position: absolute;
	right: 0;
	top: 100%;
	margin-top: 10px;
	background: #ffffff;
	border-radius: 12px;
	box-shadow: 0 10px 30px rgba(0,0,0,.1);
	padding: 15px 20px;
	min-width: 180px;
	z-index: 99999;

	display: none; /* IMPORTANT */
}

/* SOLO visible con JS */
.mr-user-menu.is-open .mr-user-dropdown {
	display: block;
}

.mr-user-dropdown a {
	display: block;
	padding: 8px 0;
	font-size: 14px;
	text-decoration: none;
	color: #333;
	transition: color .2s ease;
}

.mr-user-dropdown a:hover {
	color: var(--mr-red);
}
