.notice-bar {
	background: #f8f9fa;
	border-left: 4px solid var(--primary);
	padding: 1rem;
	margin-bottom: 2rem;
	border-radius: 4px;
}

.meetings-list {
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.meeting-item {
	background: white;
	border: 1px solid #e2e8f0;
	padding: 24px;
	max-width: 400px;
	width: 100%;
	box-shadow:
		0 4px 6px -1px rgba(0, 0, 0, 0.05),
		0 2px 4px -1px rgba(0, 0, 0, 0.03);
	transition: all 0.2s ease;
	position: relative;
	overflow: hidden;
}

.meeting-item::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 3px;
	background: linear-gradient(90deg, var(--secondary));
}

.meeting-item:hover {
	transform: translateY(-1px);
	box-shadow:
		0 10px 15px -3px rgba(0, 0, 0, 0.08),
		0 4px 6px -2px rgba(0, 0, 0, 0.04);
	border-color: #cbd5e1;
}

.meeting-date {
	display: flex;
	align-items: baseline;
	gap: 10px;
	color: var(--text);
	font-size: 15px;
	margin-bottom: 12px;
	line-height: 1.4;
}

.meeting-date svg {
	color: var(--primary);
	flex-shrink: 0;
	width: 16px;
	height: 16px;
}

.block-text {
	background-color: white;
	padding: 1.5rem;
	border-radius: 4px;
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.15);
	border-left: 4px solid var(--primary);
}

.meeting-time {
	color: var(--primary);
	font-weight: 500;
	margin-left: auto;
	font-size: 14px;
	background: #f1f5f9;
	padding: 4px 8px;
	border-radius: 6px;
	border: 1px solid #e2e8f0;
}

.meeting-title {
	margin-bottom: 8px;
	font-size: 15px;
}

.meeting-description {
	color: #475569;
	font-size: 14px;
	line-height: 1.5;
	position: relative;
}

.meeting-address {
	color: var(--text);
	font-size: 14px;
	line-height: 1.5;
	display: flex;
	align-items: center;
	gap: 6px;
}

.meeting-address::before {
	content: "";
	position: absolute;
	left: 0;
	top: 2px;
	width: 16px;
	height: 16px;

	flex-shrink: 0;
}

/* Responsive adjustments */
@media (max-width: 480px) {
	.meeting-item {
		padding: 20px;
	}

	.meeting-date {
		font-size: 14px;
	}

	.meeting-time {
		font-size: 13px;
		padding: 3px 6px;
	}
}

.meeting-actions {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.action-button {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 14px 16px;
	background: #f8fafc;
	border: 1px solid #e2e8f0;
	border-radius: 10px;
	color: #3b82f6;
	text-decoration: none;
	font-size: 14px;
	font-weight: 500;
	transition: all 0.2s ease;
	cursor: pointer;
	position: relative;
}

.status-badge {
	margin-left: auto;
	padding: 2px 8px;
	background: #dbeafe;
	color: #1e40af;
	font-size: 11px;
	font-weight: 600;
	border-radius: 12px;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.action-button:hover {
	background: #f1f5f9;
	border-color: #cbd5e1;
	transform: translateX(2px);
	color: #2563eb;
}

.meeting-link svg {
	width: 18px;
	height: 18px;
}

.live-tag {
	display: inline-block;
	background: var(--accent);
	color: white;
	padding: 0.25rem 0.5rem;
	border-radius: 4px;
	font-size: 0.75rem;
	font-weight: 600;
	margin-left: 0.5rem;
	animation: pulse 2s infinite;
}

.upcoming-tag {
	display: inline-block;
	background: var(--primary);
	color: white;
	padding: 0.25rem 0.5rem;
	border-radius: 4px;
	font-size: 0.75rem;
	font-weight: 600;
	margin-left: 0.5rem;
}

@keyframes pulse {
	0% {
		opacity: 1;
	}
	50% {
		opacity: 0.6;
	}
	100% {
		opacity: 1;
	}
}

.overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.5);
	display: none;
	z-index: 10;
}

.overlay.is-active {
	display: block;
}

.tab-container {
	margin-bottom: 1.5rem;
}

.tabs {
	display: flex;
	border-bottom: 1px solid var(--light-gray);
}

.tab {
	padding: 0.75rem 1.5rem;
	cursor: pointer;
	border-bottom: 3px solid transparent;
	font-weight: 500;
	transition: all 0.2s ease;
}

.tab:hover {
	background: #f8f9fa;
}

.tab.is-active {
	border-bottom: 3px solid var(--accent);
	color: var(--primary);
	font-weight: 500;
}

.tab-content {
	display: none;
	padding-top: 1.5rem;
}

.tab-content.is-active {
	display: block;
}

.search-box {
	display: flex;
	margin-bottom: 1.5rem;
	gap: 0.5rem;
}

.search-input {
	flex: 1;
	padding: 0.75rem 1rem;
	border: 1px solid #ddd;
	border-radius: 4px;
	font-size: 1rem;
}

.search-button {
	background: var(--primary);
	color: white;
	border: none;
	border-radius: 4px;
	padding: 0 1rem;
	cursor: pointer;
	transition: all 0.2s ease;
}

.search-button:hover {
	background: var(--link-hover);
}

@media (max-width: 992px) {
	.content-columns {
		flex-direction: column;
	}

	.main-content,
	.side-content {
		width: 100%;
	}
}

.meeting-card {
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
	width: 100%;
	margin: 0 auto;
	overflow: hidden;
}

.meeting-header {
	background: var(--secondary);
	border-bottom: 1px solid #e9ecef;
	padding: 16px;
}

.date {
	display: inline-flex;
	align-items: center;
	background: var(--primary);
	color: white;
	padding: 8px 16px;
	border-radius: 6px;
	font-size: 14px;
	font-weight: 500;
	margin-bottom: 10px;
}

.date::before {
	content: "📅";
	margin-right: 8px;
}

.meeting-title {
	font-size: 18px;
	font-weight: 600;
	color: #202124;
	margin: 0;
	line-height: 1.3;
}

.actions-container {
	padding: 24px;
}

.actions-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
	justify-content: start;
	gap: 0.6rem;
}

.action-item {
	display: flex;
	align-items: center;
	padding: 8px;
	background: white;
	border: 1px solid #e8eaed;
	border-radius: 8px;
	text-decoration: none;
	color: #202124;
	transition: all 0.2s ease;
	cursor: pointer;
}

.action-item:hover {
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
	border-color: #dadce0;
}

.action-icon {
	width: 20px;
	height: 20px;
	margin-right: 12px;
	flex-shrink: 0;
}

.action-content {
	flex: 1;
}

.action-title {
	font-weight: 500;
	font-size: 14px;
	margin: 0;
}

.unofficial-badge {
	background: #fef7e0;
	color: #f57c00;
	font-size: 12px;
	padding: 4px 8px;
	border-radius: 4px;
	margin-left: auto;
	font-weight: 500;
}
