.sbms-portal {
	font-family: "Inter", "Segoe UI", sans-serif;
	max-width: 1080px;
	margin: 0 auto;
	padding: 24px 16px;
}

.sbms-portal-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 24px;
}

.sbms-portal-header h1 {
	font-size: 28px;
	margin: 0;
}

.sbms-timeline {
	position: relative;
	padding-left: 24px;
}

.sbms-timeline::before {
	content: "";
	position: absolute;
	left: 8px;
	top: 0;
	bottom: 0;
	width: 2px;
	background: linear-gradient(180deg, #1d4ed8, #22c55e);
}

.sbms-timeline-item {
	margin-bottom: 20px;
	position: relative;
}

.sbms-timeline-item::before {
	content: "";
	position: absolute;
	left: -24px;
	top: 4px;
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background: #1d4ed8;
	box-shadow: 0 0 0 4px rgba(29, 78, 216, 0.2);
}

.sbms-document-list {
	display: grid;
	gap: 12px;
	margin-top: 12px;
}

.sbms-document-card {
	border: 1px solid rgba(15, 23, 42, 0.1);
	padding: 12px 16px;
	border-radius: 10px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	background: #fff;
}

.sbms-document-card:hover {
	border-color: rgba(29, 78, 216, 0.4);
	box-shadow: 0 12px 24px rgba(15, 23, 42, 0.08);
}

.sbms-service-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: 16px;
}

.sbms-button {
	position: relative;
	border: none;
	border-radius: 999px;
	padding: 12px 20px;
	font-weight: 600;
	background: linear-gradient(135deg, #2563eb, #0ea5e9);
	color: #fff;
	cursor: pointer;
	transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.sbms-button:hover {
	transform: translateY(-1px);
	box-shadow: 0 10px 20px rgba(37, 99, 235, 0.25);
}

@media (prefers-color-scheme: dark) {
	body {
		background: #020617;
		color: #e2e8f0;
	}

	.sbms-document-card {
		background: rgba(15, 23, 42, 0.8);
		border-color: rgba(37, 99, 235, 0.4);
	}
}
