.dashboard-menu
{	display: flex;
	flex-wrap: wrap;
	gap: 15px;
	justify-content: center;
	padding: 20px;
	background-color: #f8f9fa;
	border-radius: 8px;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
	margin-bottom: 30px;
}

.dashboard-menu .menu-item
{	flex: 1 1 calc(33% - 30px);
	max-width: 300px;
	min-width: 180px;
	box-sizing: border-box;
	text-align: center;
	background-color: #ffffff;
	border: 1px solid #dee2e6;
	border-radius: 8px;
	overflow: hidden;
	transition: all 0.3s ease;
	text-decoration: none;
	color: #343a40;
	display: flex;
	flex-direction: column;
	align-items: center;
	padding: 20px 15px;
	min-width: unset;
}

.dashboard-menu .menu-item:hover
{	transform: translateY(-5px);
	box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
	border-color: #007bff;
}

.dashboard-menu .menu-item button
{	all: unset;
	cursor: pointer;
	width: 100%;
	height: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	color: inherit;
}

.dashboard-menu .menu-item button:hover { color: #007bff; }

.dashboard-menu .menu-item .icon
{	font-size: 2.5em;
	margin-bottom: 10px;
	color: #007bff;
}

.dashboard-menu .menu-item h4
{	margin: 0;
	font-size: 1.2em;
	font-weight: 600;
}

.login-container h2
{	text-align: center;
	margin-bottom: 20px;
}

/* Responsive adjustments */
@media (max-width: 768px)
{	.dashboard-menu { gap: 10px; padding: 15px; }

	.left-panel, .right-panel { width: 50%; }
	
	.bottom-panel { flex-wrap: wrap; }

	.dashboard-menu .menu-item { flex: 1 1 calc(33.33% - 30px); }
}	

@media (max-width: 480px)
{	.dashboard-menu { gap: 10px; padding: 15px; }
	
	.dashboard-menu .menu-item
	{	flex: 1 1 calc(50% - 30px);
		max-width: none;
		padding: 15px 10px;
	}
	.dashboard-menu .menu-item .icon { font-size: 2em; }
	.dashboard-menu .menu-item h4 { font-size: 1.1em; }
}

.icon-responsive
{
    width: 100%;
    height: auto; /* Mantiene la proporción */
    display: block;
    margin: 0 auto; /* Opcional: para centrar si es necesario */
}

@media (min-width: 992px)
{
    .icon-responsive { width: 50%; }
}