    /* Scoped schedule component: every selector starts with .new-schedule-section */
    .new-schedule-section {
    	--new-primary: #0d81c0;
    	--new-dark: #292929;
    	--new-muted: #7f7f7f;
    	--new-border: #d2d2d2;
    	font-family: Arial, Helvetica, sans-serif;
    	color: var(--new-muted);
    	max-width: 1100px;
    	margin: 40px auto;
    	padding: 0 16px;
    	box-sizing: border-box;
    }

    .new-schedule-section *,
    .new-schedule-section *::before,
    .new-schedule-section *::after {
    	box-sizing: border-box;
    }

    .new-schedule-header {
    	display: flex;
    	gap: 24px;
    	justify-content: space-between;
    	align-items: flex-start;
    	margin-bottom: 28px;
    }

    .new-schedule-title h2 {
    	margin: 0 0 12px;
    	color: var(--new-dark);
    	font-size: 30px;
    	line-height: 1.2;
    	font-weight: 600;
    }

    .new-schedule-text p {
    	margin: 0;
    	font-size: 16px;
    	line-height: 1.7;
    }

    .new-download-btn,
    .new-theme-btn {
    	display: inline-block;
    	border: 0;
    	background: var(--new-primary);
    	color: #fff;
    	text-decoration: none;
    	padding: 12px 18px;
    	font-size: 13px;
    	font-weight: 700;
    	line-height: 1.2;
    	text-transform: uppercase;
    	border-radius: 2px;
    	transition: background 0.25s ease, transform 0.25s ease;
    	white-space: nowrap;
    }

    .new-download-btn:hover,
    .new-theme-btn:hover {
    	background: var(--new-dark);
    	color: #fff;
    	text-decoration: none;
    	transform: translateY(-1px);
    }

    .new-theme-btn.new-dull {
    	background: var(--new-border);
    	color: var(--new-dark);
    }

    .new-schedule-box {
    	position: relative;
    	background: #fff;
    	border: 1px solid #e5e5e5;
    }

    .new-tab-buttons {
    	display: flex;
    	margin: 0;
    	padding: 0;
    	list-style: none;
    	border-bottom: 1px solid #d0d0d0;
    }

    .new-tab-btn {
    	position: relative;
    	flex: 1;
    	padding: 20px 10px;
    	text-align: center;
    	cursor: pointer;
    	border-right: 1px solid #d0d0d0;
    	color: var(--new-dark);
    	background: #f7f7f7;
    	transition: all 300ms ease;
    	user-select: none;
    }

    .new-tab-btn:last-child {
    	border-right: 0;
    }

    .new-tab-btn:hover,
    .new-tab-btn.new-active {
    	background: var(--new-primary);
    	color: #fff;
    }

    .new-tab-day {
    	display: block;
    	font-size: 18px;
    	font-weight: 700;
    	margin-bottom: 4px;
    }

    .new-tab-date {
    	display: block;
    	font-size: 13px;
    	opacity: 0.9;
    }

    .new-tab-curve {
    	position: absolute;
    	left: 0;
    	bottom: 0;
    	width: 100%;
    	text-align: center;
    	opacity: 0;
    	transition: all 300ms ease 200ms;
    }

    .new-tab-btn:hover .new-tab-curve,
    .new-tab-btn.new-active .new-tab-curve {
    	bottom: -19px;
    	opacity: 1;
    }

    .new-tab-curve::after {
    	content: "";
    	display: inline-block;
    	width: 0;
    	height: 0;
    	border: 7px solid transparent;
    	border-top-color: var(--new-primary);
    }

    .new-tabs-box {
    	position: relative;
    }

    .new-tab {
    	display: none;
    	position: relative;
    	padding: 40px 20px;
    }

    .new-tab.new-current {
    	display: block;
    }

    .new-hour-box {
    	position: relative;
    	padding-left: 150px;
    	padding-bottom: 20px;
    	overflow: hidden;
    	font-size: 16px;
    	color: var(--new-muted);
    }

    .new-hour-box::before {
    	content: "";
    	position: absolute;
    	left: 111px;
    	top: 24px;
    	width: 2px;
    	height: 100%;
    	background: var(--new-border);
    }

    .new-hour-box.new-active-box::before {
    	background: var(--new-primary);
    }

    .new-hour-box:last-child::before {
    	display: none;
    }

    .new-hour {
    	position: absolute;
    	left: 0;
    	top: 0;
    	width: 100px;
    	line-height: 2em;
    	color: var(--new-muted);
    }

    .new-circle {
    	position: absolute;
    	left: 100px;
    	top: 0;
    	width: 24px;
    	height: 24px;
    	border: 2px solid var(--new-border);
    	border-radius: 50%;
    	background: #fff;
    }

    .new-circle span {
    	display: block;
    	width: 8px;
    	height: 8px;
    	margin: 6px auto;
    	border-radius: 50%;
    	background: var(--new-border);
    }

    .new-hour-box.new-active-box .new-circle {
    	border-color: var(--new-primary);
    }

    .new-hour-box.new-active-box .new-circle span {
    	background: var(--new-primary);
    }

    .new-toggle-btn {
    	position: relative;
    	top: -4px;
    	margin-bottom: 5px;
    	cursor: pointer;
    }

    .new-toggle-btn h3 {
    	position: relative;
    	display: inline-block;
    	margin: 0;
    	padding-right: 30px;
    	color: var(--new-dark);
    	font-size: 18px;
    	font-weight: 600;
    }

    .new-toggle-btn h3::after {
    	content: "⌄";
    	position: absolute;
    	right: 0;
    	top: -2px;
    	width: 30px;
    	height: 30px;
    	color: var(--new-primary);
    	line-height: 28px;
    	font-size: 24px;
    	text-align: right;
    }

    .new-toggle-btn.new-active h3::after {
    	content: "⌃";
    }

    .new-content-box {
    	display: none;
    	position: relative;
    	padding-right: 20px;
    	line-height: 1.7;
    }

    .new-content-box.new-collapsed {
    	display: block;
    }

    .new-content-box p {
    	margin: 0 0 10px;
    }

    .new-professional {
    	display: flex;
    	align-items: center;
    	justify-content: space-between;
    	gap: 20px;
    	margin-top: 16px;
    }

    .new-prof-info {
    	position: relative;
    	min-height: 72px;
    	padding-left: 95px;
    	padding-top: 10px;
    	min-width: 250px;
    }

    .new-prof-image {
    	position: absolute;
    	left: 0;
    	top: 0;
    	width: 72px;
    	height: 72px;
    	border: 1px solid #d0d0d0;
    	border-radius: 50%;
    	overflow: hidden;
    	margin: 0;
    	background: #f1f1f1;
    }

    .new-prof-image img {
    	display: block;
    	width: 100%;
    	height: 100%;
    	object-fit: cover;
    }

    .new-prof-title {
    	margin: 0 0 7px;
    	color: var(--new-dark);
    	font-size: 18px;
    	font-weight: 500;
    }

    .new-prof-occup {
    	margin: 0;
    	color: var(--new-primary);
    	font-size: 15px;
    	font-weight: 400;
    }

    .new-event-actions {
    	display: flex;
    	flex-wrap: wrap;
    	justify-content: flex-end;
    	gap: 10px;
    }

    @media (max-width: 767px) {

    	.new-schedule-header,
    	.new-professional {
    		display: block;
    	}

    	.new-download-wrap {
    		margin-top: 18px;
    	}

    	.new-tab-buttons {
    		display: block;
    		border-bottom: 0;
    	}

    	.new-tab-btn {
    		display: block;
    		width: 100%;
    		border: 1px solid #d0d0d0;
    		margin-bottom: 5px;
    	}

    	.new-tab-curve {
    		display: none;
    	}

    	.new-hour-box {
    		padding-left: 40px;
    	}

    	.new-hour {
    		position: relative;
    		margin-bottom: 15px;
    	}

    	.new-circle {
    		left: 0;
    	}

    	.new-hour-box::before {
    		left: 11px;
    	}

    	.new-content-box {
    		padding-right: 0;
    	}

    	.new-toggle-btn h3 {
    		font-size: 15px;
    	}

    	.new-event-actions {
    		justify-content: flex-start;
    		margin-top: 12px;
    	}

    	.new-theme-btn,
    	.new-download-btn {
    		white-space: normal;
    	}
    }