/* ConsultDesk — shared front-end styles. Modules extend, not override, these base rules. */
.cd-button {
	display: inline-block;
	padding: 0.6em 1.3em;
	border-radius: 6px;
	border: none;
	background: #0f4c5c;
	color: #ffffff;
	font-weight: 600;
	cursor: pointer;
	font-size: 0.95rem;
	line-height: 1.2;
	transition: background 0.15s ease;
}
.cd-button:hover { background: #0b3a46; }
.cd-button--placeholder { background: #9ca3af; cursor: not-allowed; }

.cd-modal-root {
	position: fixed;
	inset: 0;
	z-index: 100000;
	display: none;
	align-items: center;
	justify-content: center;
	background: rgba(15, 23, 33, 0.55);
}
.cd-modal-root.is-open { display: flex; }
.cd-modal {
	background: #fff;
	border-radius: 8px;
	max-width: 480px;
	width: 92%;
	max-height: 88vh;
	overflow-y: auto;
	padding: 28px;
	box-shadow: 0 12px 40px rgba(0,0,0,0.25);
}

.cd-notifications__list { list-style: none; margin: 0; padding: 0; }
.cd-notification { padding: 12px 14px; border-radius: 6px; margin-bottom: 8px; background: #f3f6f6; }
.cd-notification.is-unread { background: #e6f3f1; border-left: 3px solid #0f4c5c; }
.cd-notification__title { display: block; margin-bottom: 2px; }
.cd-notification__message { margin: 2px 0 4px; font-size: 0.9rem; color: #4b5563; }
.cd-notification__time { font-size: 0.78rem; color: #6b7280; }
.cd-notification__link { margin-left: 8px; font-size: 0.85rem; }
.cd-notifications__empty { color: #6b7280; font-style: italic; }
