/*
 * The entry point rendered inside the LMS account area.
 *
 * The app's own stylesheet is not loaded there — this is the small piece that
 * has to travel with the button so it looks like part of the module and not
 * like a stray link in the theme.
 */

.msrm-entry-card {
	display: flex;
	align-items: center;
	gap: 14px;
	background: #fff;
	border: 1px solid #DDE4E2;
	border-inline-start: 5px solid var(--msrm-primary, #1F7A5A);
	border-radius: 14px;
	padding: 18px 20px;
	text-decoration: none;
	color: #1B2430;
	margin: 0 0 20px;
	box-shadow: 0 4px 18px rgba(16, 32, 28, .06);
	min-height: 78px;
}
.msrm-entry-card:hover { border-color: var(--msrm-primary, #1F7A5A); }
.msrm-entry-card__icon { color: var(--msrm-primary, #1F7A5A); display: grid; place-items: center; flex: none; }
.msrm-entry-card__text { display: flex; flex-direction: column; flex: 1; min-width: 0; }
.msrm-entry-card__text strong { font-size: 1.08em; }
.msrm-entry-card__text small { color: #5C6B67; }
.msrm-entry-card__go { font-size: 1.4em; color: var(--msrm-primary, #1F7A5A); }

.msrm-inline-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 52px;
	padding: 12px 26px;
	border-radius: 10px;
	background: var(--msrm-primary, #1F7A5A);
	color: #fff !important;
	font-weight: 700;
	text-decoration: none;
}
