/* Psyciencia Sidebar Pro — v1.1.0 */

.psyc-sidebar {
	font-family: 'Source Serif 4', Georgia, serif;
}

/* ── Botón de login ────────────────────────────────── */
.psyc-login-btn {
	display: flex;
	align-items: center;
	justify-content: space-between;
	background: #213A49;
	color: #fff;
	border-radius: 10px;
	padding: 13px 18px;
	font-family: 'Playfair Display', Georgia, serif;
	font-size: 15px;
	font-weight: 600;
	text-decoration: none;
	margin-bottom: 24px;
	transition: background 0.15s;
	width: 100%;
	box-sizing: border-box;
}
.psyc-login-btn:hover,
.psyc-login-btn:focus {
	background: #1a2e3b;
	color: #fff;
	text-decoration: none;
}
.psyc-login-icon {
	width: 22px;
	height: 22px;
	border: 2px solid #c9a84c;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

/* ── Barra de usuario ──────────────────────────────── */
.psyc-user-bar {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 20px;
	padding: 10px 14px;
	background: #f5f3ee;
	border-radius: 10px;
	border: 1px solid #e8e4dc;
}
.psyc-avatar {
	width: 34px;
	height: 34px;
	border-radius: 50%;
	background: #213A49;
	display: flex;
	align-items: center;
	justify-content: center;
	font-family: 'Playfair Display', serif;
	font-size: 13px;
	font-weight: 600;
	color: #c9a84c;
	flex-shrink: 0;
}
.psyc-user-info {
	flex: 1;
	min-width: 0;
}
.psyc-user-name {
	font-size: 13.5px;
	font-weight: 500;
	color: #1a1a1a;
	margin: 0;
	line-height: 1.3;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}
.psyc-user-role {
	font-size: 11.5px;
	color: #c9a84c;
	margin: 0;
	line-height: 1.3;
}

/* ── Menú de navegación ────────────────────────────── */
.psyc-sidebar .psyc-nav {
	list-style: none;
	margin: 0;
	padding: 0;
}
.psyc-sidebar .psyc-nav li {
	margin: 0;
	padding: 0;
}
.psyc-sidebar .psyc-nav li a {
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: 16px;
	font-weight: 400;
	color: #1a1a1a;
	text-decoration: none;
	padding: 8px 0;
	border-bottom: 1px solid rgba(0, 0, 0, 0.08);
	transition: color 0.12s;
}
.psyc-sidebar .psyc-nav li:last-child a {
	border-bottom: none;
}
.psyc-sidebar .psyc-nav li a:hover {
	color: #c9a84c;
	text-decoration: none;
}
.psyc-sidebar .psyc-nav li a svg {
	width: 18px;
	height: 18px;
	flex-shrink: 0;
	stroke: #888;
	transition: stroke 0.12s;
}
.psyc-sidebar .psyc-nav li a:hover svg {
	stroke: #c9a84c;
}

/* ── Cerrar sesión ─────────────────────────────────── */
.psyc-sidebar .psyc-nav li a.psyc-danger {
	color: #999;
	font-size: 14.5px;
}
.psyc-sidebar .psyc-nav li a.psyc-danger:hover {
	color: #c0392b;
}
.psyc-sidebar .psyc-nav li a.psyc-danger:hover svg {
	stroke: #c0392b;
}
