.agenda-modal {
	max-width: 480px;
	/* width: 35%; */
	height: 100vh;
	/* margin: 40px auto; */
	background: white;
	border-radius: 0px;
	box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25);
	padding: 0px;
}

.agenda-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	background: rgb(24 32 53);
	padding: 10px 10px;
	position: relative;
}

.agenda-title {
	display: flex;
	align-items: center;
	gap: 12px;
}

.agenda-title h2 {
	margin: 0;
	font-size: 20px;
	color: #dcefff;
}

.agenda-title p {
	margin: 0;
	font-size: 13px;
	color: #666;
}

.agenda-icon {
	font-size: 0px;
}

.agenda-icon svg {
	fill: #dcefff;
}

.agenda-close {
	background: none;
	border: none;
	font-size: 20px;
	cursor: pointer;
	color: #dcefff;
}

.agenda-meta {
	display: flex;
	/* justify-content: space-between; */
	gap: 10px;
	margin: 20px 0;
	font-size: 14px;
	color: #444;
	padding: 0px 15px;
}

.agenda-meta>div {
	/* background: #edf1ff; */
	background: #f2f9ff;
	padding: 5px 10px;
	/* border: 1px solid #7d8eb9; */
	border: 1px solid #cce0ef;
	border-radius: 5px;
}

.agenda-tabs {
	margin-bottom: 16px;
	padding: 0px 15px;
}

.agenda-tab {
	background: #2196f3;
	color: white;
	padding: 6px 12px;
	border: none;
	border-radius: 15px;
	font-weight: 500;
	cursor: pointer;
}

.agenda-items {
	display: flex;
	flex-direction: column;
	gap: 16px;
	max-height: 85vh;
	overflow-y: auto;
	padding: 15px 15px 15px 15px;
}

.agenda-item {
	display: flex;
	border: 1px solid #eee;
	border-left: 6px solid var(--accent);
	border-radius: 8px;
	padding: 15px;
	/* background: #f9f9f9; */
	background: #edf1ff;
}

.agenda-time {
	width: 120px;
	font-size: 14px;
	color: #333;
}

.agenda-time strong {
	font-size: 15px;
}

.agenda-duration {
	font-size: 14px;
	margin-top: 6px;
	color: #182035;
	/* background: #c7d0e9; */
	background: #d0d7eb;
	width: fit-content;
	padding: 2px 5px;
	border-radius: 10px;
	display: flex;
	align-items: center;
	gap: 3px;
	margin-top: 10px;
}

.agenda-duration svg {
	fill: #182035;
}

.agenda-content {
	padding-left: 15px;
	border-left: 2px solid var(--accent);
	flex: 1;
}

.agenda-content h4 {
	margin: 0 0 12px;
	font-size: 16px;
	font-weight: 600;
	color: #222;
}

.agenda-content p {
	margin: 0;
	font-size: 14px;
	color: #333;
}

#eventAgenda {
	position: fixed;
	top: 0;
	left: -35%;
	width: 35%;
	height: 93vh;
	background-color: #f8f9fa;
	box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
	transition: left 0.3s ease;
	z-index: 1000;
	overflow-y: auto;
	z-index: 6;
	border-radius: 0 !important;
	/* display: none; */
}

#eventAgenda.open {
	left: 0;
	/* display: block; */
}

#eventAgenda .agenda-header {
	background-color: #343a40;
	color: #ffffff;
}

.agenda-list-top-bar{
	color: white;
}