.dashboard_main {
	max-width: 1200px;
	margin: 0 auto;
	padding: 32px 20px 48px;
}

.dashboard_welcome {
	background: linear-gradient(135deg, #34006b 0%, #5a1a9e 100%);
	color: #fff;
	border-radius: 14px;
	padding: 28px 32px;
	margin-bottom: 28px;
	box-shadow: 0 8px 24px rgba(52, 0, 107, 0.2);
}

.dashboard_welcome h1 {
	margin: 0 0 8px;
	font-size: 26px;
	font-weight: 700;
	font-family: "Poppins", "Nirmala UI", sans-serif;
}

.dashboard_welcome p {
	margin: 0;
	font-size: 15px;
	line-height: 1.6;
	opacity: 0.95;
}

.dashboard_welcome .login_id {
	font-weight: 600;
}

.dashboard_welcome_sub {
	display: block;
	margin-top: 6px;
	font-size: 14px;
	opacity: 0.85;
}

.dashboard_grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
	gap: 20px;
}

.dashboard_card {
	background: #fff;
	border: 1px solid #e8e0f0;
	border-radius: 12px;
	padding: 22px 20px;
	text-decoration: none;
	color: inherit;
	transition: box-shadow 0.2s, border-color 0.2s, transform 0.2s;
	display: block;
}

.dashboard_card:hover {
	border-color: #34006b;
	box-shadow: 0 6px 20px rgba(52, 0, 107, 0.12);
	transform: translateY(-2px);
}

.dashboard_card--static {
	cursor: default;
}

.dashboard_card--static:hover {
	border-color: #e8e0f0;
	box-shadow: none;
	transform: none;
}

.dashboard_card_icon {
	width: 44px;
	height: 44px;
	border-radius: 10px;
	background: #ede7f6;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 14px;
}

.dashboard_card_icon img {
	width: 22px;
	height: 22px;
}

.dashboard_card h2 {
	margin: 0 0 6px;
	font-size: 17px;
	font-weight: 600;
	color: #1a1a2e;
	font-family: "Poppins", "Nirmala UI", sans-serif;
}

.dashboard_card p {
	margin: 0;
	font-size: 14px;
	line-height: 1.5;
	color: #666;
}

.dashboard_notice {
	margin-top: 28px;
	padding: 16px 20px;
	background: #f8f5fc;
	border-left: 4px solid #34006b;
	border-radius: 0 8px 8px 0;
	font-size: 14px;
	line-height: 1.55;
	color: #444;
}

.top_header .log_out_link {
	color: #34006b;
	font-size: 14px;
	font-weight: 600;
	text-decoration: none;
	padding: 6px 14px;
	border: 1px solid #34006b;
	border-radius: 6px;
	transition: background 0.2s, color 0.2s;
}

.top_header .log_out_link:hover {
	background: #34006b;
	color: #fff;
}

.bottom_header_nav_content .menu_bar .cims-mitra-link {
	position: relative;
	z-index: 2;
}

.bottom_header_nav_content .menu_bar .nav_user_menu {
	position: relative;
	z-index: 3;
}

.bottom_header_nav_content .menu_bar .nav_user_trigger {
	display: flex;
	align-items: center;
	gap: 8px;
	border: none;
	background: #42079e;
	color: #fff;
	border-bottom: 3px solid #2b2d6b;
	border-radius: 6px;
	padding: 5px 14px;
	cursor: pointer;
	font-family: "Times New Roman", Times, serif;
	font-size: 18px;
	font-weight: 400;
	line-height: 1.2;
}

.bottom_header_nav_content .menu_bar .nav_user_menu.active .nav_user_trigger,
.bottom_header_nav_content .menu_bar .nav_user_trigger:hover {
	background-color: #42079e;
	color: #fff;
}

.bottom_header_nav_content .menu_bar .nav_user_avatar {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 26px;
	height: 26px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.2);
	flex-shrink: 0;
}

.bottom_header_nav_content .menu_bar .nav_user_avatar .icons {
	width: 16px;
	height: 16px;
	filter: invert(100%);
}

.bottom_header_nav_content .menu_bar .nav_user_name {
	max-width: 140px;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.bottom_header_nav_content .menu_bar .nav_user_chevron {
	font-size: 12px;
	opacity: 0.9;
	transition: transform 0.2s;
}

.bottom_header_nav_content .menu_bar .nav_user_menu.open .nav_user_chevron {
	transform: rotate(180deg);
}

.bottom_header_nav_content .menu_bar .nav_user_dropdown {
	position: absolute;
	top: calc(100% + 6px);
	right: 0;
	min-width: 160px;
	background: #fff;
	border-radius: 8px;
	box-shadow: 0 8px 24px rgba(26, 16, 48, 0.18);
	overflow: hidden;
	z-index: 1000;
	border: 1px solid #e8e0f0;
}

.bottom_header_nav_content .menu_bar .nav_user_dropdown_item {
	display: block;
	width: 100%;
	border: none;
	background: none;
	text-align: left;
	padding: 11px 16px;
	font-family: "Poppins", "Nirmala UI", sans-serif;
	font-size: 15px;
	font-weight: 500;
	color: #1a1a2e;
	cursor: pointer;
	transition: background 0.2s, color 0.2s;
}

.bottom_header_nav_content .menu_bar .nav_user_dropdown_item:hover {
	background: #42079e;
	color: #fff;
}

.mobile_menu_content .menu_list .mobile_user_row {
	font-weight: 600;
	color: #34006b;
	padding: 10px 16px;
	border-top: 1px solid #eee;
	margin-top: 6px;
	pointer-events: none;
}

@media (max-width: 768px) {
	.dashboard_welcome {
		padding: 22px 20px;
	}

	.dashboard_welcome h1 {
		font-size: 22px;
	}
}
