/**
 * Archive Pages Styles - Eventbrite Inspired
 *
 * @package MindfulEvents
 */

/* Container */
.mindful-container {
	max-width: 1280px;
	margin: 0 auto;
	padding: 0 24px;
}

/* Hero Search Section */
.mindful-hero-search {
	background: linear-gradient(135deg, #f5f3ff 0%, #f9f5ff 100%);
	padding: 60px 0 48px;
	margin-bottom: 48px;
	border-bottom: 1px solid #e5e7eb;
}

.mindful-hero-search h1 {
	font-size: 48px;
	font-weight: 700;
	color: #111827;
	text-align: center;
	margin: 0 0 12px;
}

.mindful-hero-subtitle {
	font-size: 20px;
	color: #6b7280;
	text-align: center;
	margin: 0 0 32px;
}

/* Search Bar */
.mindful-search-bar {
	max-width: 800px;
	margin: 0 auto 32px;
	display: flex;
	gap: 12px;
}

.mindful-search-input-group {
	flex: 1;
	position: relative;
	display: flex;
	align-items: center;
	background: #ffffff;
	border: 2px solid #e5e7eb;
	border-radius: 12px;
	padding: 4px 20px;
	transition: all 0.2s;
}

.mindful-search-input-group:focus-within {
	border-color: #A24A89;
	box-shadow: 0 0 0 4px rgba(162, 74, 137, 0.1);
}

.mindful-search-input-group .dashicons {
	font-size: 24px;
	width: 24px;
	height: 24px;
	color: #9ca3af;
	margin-right: 12px;
}

.mindful-search-input-group input {
	flex: 1;
	border: none;
	outline: none;
	font-size: 18px;
	color: #111827;
	padding: 16px 0;
	background: transparent;
}

.mindful-search-input-group input::placeholder {
	color: #9ca3af;
}

.mindful-search-btn {
	padding: 16px 40px;
	background: #A24A89;
	color: #ffffff;
	font-size: 18px;
	font-weight: 600;
	border: none;
	border-radius: 12px;
	cursor: pointer;
	transition: all 0.2s;
	white-space: nowrap;
}

.mindful-search-btn:hover {
	background: #8a3e75;
	transform: translateY(-1px);
	box-shadow: 0 4px 12px rgba(162, 74, 137, 0.3);
}

/* Category Chips */
.mindful-category-chips {
	max-width: 900px;
	margin: 0 auto;
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	justify-content: center;
}

.mindful-chip {
	padding: 10px 20px;
	background: #ffffff;
	border: 2px solid #e5e7eb;
	border-radius: 50px;
	font-size: 14px;
	font-weight: 600;
	color: #374151;
	cursor: pointer;
	transition: all 0.2s;
}

.mindful-chip:hover {
	border-color: #A24A89;
	color: #A24A89;
	background: #fff5fa;
}

.mindful-chip.active {
	background: #A24A89;
	border-color: #A24A89;
	color: #ffffff;
}

/* View Controls */
.mindful-view-controls {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 32px;
	padding-bottom: 20px;
	border-bottom: 1px solid #e5e7eb;
}

.mindful-view-switcher {
	display: flex;
	gap: 4px;
	background: #f9fafb;
	padding: 4px;
	border-radius: 10px;
}

.mindful-view-btn {
	display: flex;
	align-items: center;
	gap: 6px;
	padding: 10px 18px;
	border: none;
	background: transparent;
	color: #6b7280;
	font-size: 14px;
	font-weight: 600;
	border-radius: 8px;
	cursor: pointer;
	transition: all 0.15s;
}

.mindful-view-btn:hover {
	background: #ffffff;
	color: #111827;
}

.mindful-view-btn.active {
	background: #ffffff;
	color: #A24A89;
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.mindful-view-btn .dashicons {
	font-size: 18px;
	width: 18px;
	height: 18px;
}

.mindful-filters-toggle {
	display: flex;
	align-items: center;
	gap: 8px;
	padding: 10px 20px;
	border: 1px solid #d1d5db;
	background: #ffffff;
	color: #374151;
	font-size: 14px;
	font-weight: 600;
	border-radius: 8px;
	cursor: pointer;
	transition: all 0.15s;
}

.mindful-filters-toggle:hover {
	border-color: #A24A89;
	color: #A24A89;
}

.mindful-filters-toggle .dashicons {
	font-size: 18px;
	width: 18px;
	height: 18px;
}

/* Advanced Filters */
.mindful-advanced-filters {
	background: #f9fafb;
	border: 1px solid #e5e7eb;
	border-radius: 12px;
	padding: 24px;
	margin-bottom: 32px;
}

.mindful-filter-row {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 20px;
	align-items: end;
}

.mindful-filter-col label {
	display: block;
	font-size: 14px;
	font-weight: 600;
	color: #374151;
	margin-bottom: 8px;
}

.mindful-filter-select {
	width: 100%;
	padding: 12px 16px;
	border: 1px solid #d1d5db;
	border-radius: 8px;
	font-size: 15px;
	color: #374151;
	background: #ffffff;
	cursor: pointer;
	transition: all 0.15s;
}

.mindful-filter-select:focus {
	outline: none;
	border-color: #A24A89;
	box-shadow: 0 0 0 3px rgba(162, 74, 137, 0.1);
}

.mindful-apply-filters {
	width: 100%;
	padding: 12px 24px;
	background: #A24A89;
	color: #ffffff;
	font-size: 15px;
	font-weight: 600;
	border: none;
	border-radius: 8px;
	cursor: pointer;
	transition: all 0.2s;
}

.mindful-apply-filters:hover {
	background: #8a3e75;
}

/* Calendar View */
.mindful-calendar-view {
	background: #ffffff;
	border: 1px solid #e5e7eb;
	border-radius: 12px;
	padding: 24px;
	margin-bottom: 32px;
}

#mindful-calendar {
	min-height: 600px;
}

/* Loading State */
.mindful-loading {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 12px;
	padding: 60px 20px;
	font-size: 16px;
	color: #6b7280;
}

.mindful-loading .dashicons {
	animation: spin 1s linear infinite;
	font-size: 24px;
	width: 24px;
	height: 24px;
}

@keyframes spin {
	from { transform: rotate(0deg); }
	to { transform: rotate(360deg); }
}

/* Events Container - Grid View (Default) */
.mindful-events-container[data-current-view="grid"] {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
	gap: 24px;
	margin-bottom: 40px;
}

.mindful-events-container[data-current-view="grid"] .mindful-event-card {
	display: flex;
	flex-direction: column;
	background: #ffffff;
	border: 1px solid #e5e7eb;
	border-radius: 12px;
	overflow: hidden;
	transition: all 0.2s;
	cursor: pointer;
}

.mindful-events-container[data-current-view="grid"] .mindful-event-card:hover {
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
	transform: translateY(-4px);
}

.mindful-events-container[data-current-view="grid"] .mindful-event-image {
	width: 100%;
	height: 200px;
	overflow: hidden;
	position: relative;
}

.mindful-events-container[data-current-view="grid"] .mindful-event-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.3s;
}

.mindful-events-container[data-current-view="grid"] .mindful-event-card:hover .mindful-event-image img {
	transform: scale(1.05);
}

.mindful-events-container[data-current-view="grid"] .mindful-event-content {
	padding: 20px;
	flex: 1;
	display: flex;
	flex-direction: column;
}

/* Event Badge (Format) */
.mindful-event-badge {
	position: absolute;
	top: 12px;
	right: 12px;
	padding: 6px 12px;
	background: rgba(255, 255, 255, 0.95);
	backdrop-filter: blur(8px);
	border-radius: 20px;
	font-size: 12px;
	font-weight: 700;
	color: #374151;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.mindful-badge-online {
	background: rgba(59, 130, 246, 0.95);
	color: #ffffff;
}

.mindful-badge-hybrid {
	background: rgba(168, 85, 247, 0.95);
	color: #ffffff;
}

/* Events Container - List View */
.mindful-events-container[data-current-view="list"] {
	display: flex;
	flex-direction: column;
	gap: 20px;
	margin-bottom: 40px;
}

.mindful-events-container[data-current-view="list"] .mindful-event-card {
	display: flex;
	background: #ffffff;
	border: 1px solid #e5e7eb;
	border-radius: 12px;
	overflow: hidden;
	transition: all 0.2s;
}

.mindful-events-container[data-current-view="list"] .mindful-event-card:hover {
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
	transform: translateY(-2px);
}

.mindful-events-container[data-current-view="list"] .mindful-event-image {
	width: 280px;
	flex-shrink: 0;
	overflow: hidden;
	position: relative;
}

.mindful-events-container[data-current-view="list"] .mindful-event-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.mindful-events-container[data-current-view="list"] .mindful-event-content {
	flex: 1;
	padding: 24px;
	display: flex;
	gap: 20px;
}

/* Event Date Badge */
.mindful-event-date-badge {
	flex-shrink: 0;
	width: 60px;
	height: 72px;
	background: #ffffff;
	border: 2px solid #e5e7eb;
	border-radius: 8px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
}

.mindful-badge-month {
	font-size: 12px;
	font-weight: 700;
	color: #A24A89;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.mindful-badge-day {
	font-size: 28px;
	font-weight: 700;
	color: #111827;
	line-height: 1;
}

/* Event Info */
.mindful-event-info {
	flex: 1;
	display: flex;
	flex-direction: column;
}

.mindful-event-category {
	display: inline-block;
	font-size: 12px;
	font-weight: 700;
	color: #A24A89;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	margin-bottom: 8px;
}

.mindful-event-title {
	font-size: 20px;
	font-weight: 700;
	margin: 0 0 12px;
	line-height: 1.3;
}

.mindful-event-title a {
	color: #111827;
	text-decoration: none;
	transition: color 0.15s;
}

.mindful-event-title a:hover {
	color: #A24A89;
}

.mindful-event-meta-row {
	display: flex;
	flex-wrap: wrap;
	gap: 16px;
	margin-bottom: 12px;
}

.mindful-meta-item {
	display: flex;
	align-items: center;
	font-size: 14px;
	color: #6b7280;
}

.mindful-meta-item .dashicons {
	margin-right: 6px;
	font-size: 18px;
	width: 18px;
	height: 18px;
	color: #9ca3af;
}

.mindful-event-teacher {
	font-size: 14px;
	color: #6b7280;
	margin-bottom: 16px;
}

.mindful-event-footer {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-top: auto;
}

.mindful-event-price {
	font-size: 18px;
	font-weight: 700;
	color: #111827;
}

.mindful-price-free {
	color: #10B981;
}

/* Empty State */
.mindful-empty-state {
	text-align: center;
	padding: 80px 20px;
}

.mindful-empty-state .dashicons {
	font-size: 80px;
	width: 80px;
	height: 80px;
	color: #d1d5db;
	margin: 0 auto 24px;
	display: block;
}

.mindful-empty-state h3 {
	font-size: 24px;
	font-weight: 600;
	color: #374151;
	margin: 0 0 12px;
}

.mindful-empty-state p {
	font-size: 16px;
	color: #6b7280;
	margin: 0;
	max-width: 500px;
	margin: 0 auto;
}

/* Pagination */
.mindful-pagination {
	margin-top: 48px;
	padding-top: 32px;
	border-top: 1px solid #e5e7eb;
}

.mindful-pagination .navigation {
	display: flex;
	justify-content: center;
	gap: 8px;
}

.mindful-pagination .nav-links {
	display: flex;
	gap: 8px;
}

.mindful-pagination a,
.mindful-pagination span {
	display: flex;
	align-items: center;
	padding: 10px 16px;
	border: 1px solid #e5e7eb;
	background: #ffffff;
	color: #374151;
	font-size: 14px;
	font-weight: 600;
	border-radius: 8px;
	text-decoration: none;
	transition: all 0.15s;
}

.mindful-pagination a:hover {
	border-color: #A24A89;
	color: #A24A89;
}

.mindful-pagination .current {
	background: #A24A89;
	border-color: #A24A89;
	color: #ffffff;
}

.mindful-pagination .dashicons {
	font-size: 16px;
	width: 16px;
	height: 16px;
}

/* Buttons */
.mindful-btn-primary {
	display: inline-block;
	padding: 12px 24px;
	background: #A24A89;
	color: #ffffff;
	font-size: 15px;
	font-weight: 600;
	text-decoration: none;
	border-radius: 8px;
	border: none;
	cursor: pointer;
	transition: all 0.2s;
}

.mindful-btn-primary:hover {
	background: #8a3e75;
	transform: translateY(-1px);
	box-shadow: 0 2px 8px rgba(162, 74, 137, 0.3);
}

/* Teacher/Program Single Pages */
.mindful-teacher-single,
.mindful-program-single {
	padding: 40px 0;
}

.mindful-teacher-header,
.mindful-program-header {
	display: flex;
	gap: 48px;
	margin-bottom: 48px;
	padding-bottom: 48px;
	border-bottom: 1px solid #e5e7eb;
}

.mindful-teacher-photo,
.mindful-program-image {
	width: 400px;
	flex-shrink: 0;
}

.mindful-teacher-photo img,
.mindful-program-image img {
	width: 100%;
	height: auto;
	border-radius: 12px;
	border: 1px solid #e5e7eb;
}

.mindful-teacher-placeholder,
.mindful-program-placeholder {
	width: 100%;
	aspect-ratio: 1;
	background: #f9fafb;
	border: 1px solid #e5e7eb;
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #d1d5db;
}

.mindful-teacher-placeholder .dashicons,
.mindful-program-placeholder .dashicons {
	font-size: 120px;
	width: 120px;
	height: 120px;
}

.mindful-teacher-info,
.mindful-program-info {
	flex: 1;
}

.mindful-teacher-name,
.mindful-program-name {
	font-size: 40px;
	font-weight: 700;
	color: #111827;
	margin: 0 0 8px;
}

.mindful-teacher-tradition {
	font-size: 18px;
	color: #6b7280;
	margin: 0 0 20px;
}

.mindful-teacher-meta,
.mindful-program-meta {
	display: flex;
	flex-direction: column;
	gap: 8px;
	margin-bottom: 24px;
	padding: 20px 0;
	border-top: 1px solid #e5e7eb;
	border-bottom: 1px solid #e5e7eb;
}

.mindful-teacher-bio,
.mindful-program-description {
	font-size: 16px;
	color: #374151;
	line-height: 1.7;
	margin-bottom: 24px;
}

.mindful-program-prerequisites {
	background: #fffbeb;
	border: 1px solid #fde68a;
	border-radius: 12px;
	padding: 20px 24px;
	margin-bottom: 24px;
}

.mindful-program-prerequisites h3 {
	font-size: 14px;
	font-weight: 700;
	color: #92400e;
	margin: 0 0 8px;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.mindful-program-prerequisites p {
	font-size: 14px;
	color: #78350f;
	margin: 0;
}

.mindful-teacher-contact {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-bottom: 16px;
}

.mindful-contact-link {
	display: flex;
	align-items: center;
	gap: 6px;
	padding: 10px 18px;
	background: #f9fafb;
	border: 1px solid #e5e7eb;
	border-radius: 8px;
	text-decoration: none;
	color: #374151;
	font-size: 14px;
	font-weight: 500;
	transition: all 0.15s;
}

.mindful-contact-link:hover {
	background: #ffffff;
	border-color: #A24A89;
	color: #A24A89;
}

.mindful-contact-link .dashicons {
	font-size: 18px;
	width: 18px;
	height: 18px;
}

.mindful-teacher-social {
	display: flex;
	gap: 8px;
}

.mindful-social-link {
	width: 44px;
	height: 44px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #f9fafb;
	border: 1px solid #e5e7eb;
	border-radius: 50%;
	color: #6b7280;
	transition: all 0.15s;
}

.mindful-social-link:hover {
	background: #A24A89;
	border-color: #A24A89;
	color: #ffffff;
}

.mindful-social-link .dashicons {
	font-size: 20px;
	width: 20px;
	height: 20px;
}

/* Section Header */
.mindful-section-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 32px;
}

.mindful-section-header h2 {
	font-size: 28px;
	font-weight: 700;
	color: #111827;
	margin: 0;
}

/* Responsive */
@media (max-width: 1024px) {
	.mindful-hero-search h1 {
		font-size: 40px;
	}

	.mindful-teacher-header,
	.mindful-program-header {
		flex-direction: column;
		gap: 24px;
	}

	.mindful-teacher-photo,
	.mindful-program-image {
		width: 100%;
		max-width: 400px;
		margin: 0 auto;
	}

	.mindful-events-container[data-current-view="grid"] {
		grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
	}
}

@media (max-width: 768px) {
	.mindful-hero-search {
		padding: 40px 0 32px;
	}

	.mindful-hero-search h1 {
		font-size: 32px;
	}

	.mindful-hero-subtitle {
		font-size: 16px;
	}

	.mindful-search-bar {
		flex-direction: column;
	}

	.mindful-search-input-group input {
		font-size: 16px;
	}

	.mindful-search-btn {
		width: 100%;
	}

	.mindful-view-controls {
		flex-direction: column;
		gap: 16px;
		align-items: stretch;
	}

	.mindful-view-switcher {
		justify-content: center;
		width: 100%;
	}

	.mindful-filters-toggle {
		width: 100%;
		justify-content: center;
	}

	.mindful-filter-row {
		grid-template-columns: 1fr;
	}

	.mindful-events-container[data-current-view="list"] .mindful-event-card {
		flex-direction: column;
	}

	.mindful-events-container[data-current-view="list"] .mindful-event-image {
		width: 100%;
		height: 200px;
	}

	.mindful-events-container[data-current-view="list"] .mindful-event-content {
		flex-direction: column;
		padding: 16px;
	}

	.mindful-events-container[data-current-view="grid"] {
		grid-template-columns: 1fr;
	}

	.mindful-event-footer {
		flex-direction: column;
		align-items: stretch;
		gap: 12px;
	}

	.mindful-teacher-name,
	.mindful-program-name {
		font-size: 32px;
	}

	.mindful-section-header {
		flex-direction: column;
		align-items: stretch;
		gap: 16px;
	}
}

/* ===========================
   CALENDAR VIEW STYLES - Modern Minimal White
   =========================== */

#mindful-calendar-view {
	background: #ffffff;
	border-radius: 20px;
	padding: 32px;
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
	border: 1px solid #f0f0f1;
	margin-top: 24px;
}

/* FullCalendar - Clean Modern Overrides */
.fc {
	font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif !important;
	color: #111827 !important;
}

/* Header - Bright and Minimal */
.fc .fc-toolbar {
	margin-bottom: 24px !important;
	padding-bottom: 20px !important;
	border-bottom: 1px solid #f3f4f6 !important;
}

.fc .fc-toolbar-title {
	font-size: 28px !important;
	font-weight: 700 !important;
	color: #111827 !important;
	letter-spacing: -0.5px !important;
}

/* Buttons - Minimal Style */
.fc .fc-button-primary {
	background-color: #ffffff !important;
	border: 1px solid #e5e7eb !important;
	color: #6b7280 !important;
	text-transform: capitalize !important;
	font-weight: 600 !important;
	padding: 10px 18px !important;
	border-radius: 10px !important;
	transition: all 0.2s ease !important;
	box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05) !important;
}

.fc .fc-button-primary:hover {
	background-color: #f9fafb !important;
	border-color: #A24A89 !important;
	color: #A24A89 !important;
	box-shadow: 0 2px 4px rgba(162, 74, 137, 0.1) !important;
}

.fc .fc-button-primary:not(:disabled).fc-button-active {
	background-color: #A24A89 !important;
	border-color: #A24A89 !important;
	color: #ffffff !important;
	box-shadow: 0 2px 8px rgba(162, 74, 137, 0.2) !important;
}

.fc .fc-button-primary:disabled {
	opacity: 0.4 !important;
	cursor: not-allowed !important;
	background-color: #ffffff !important;
}

.fc .fc-button-primary:focus {
	box-shadow: 0 0 0 3px rgba(162, 74, 137, 0.1) !important;
}

/* Grid - Bright and Clean */
.fc-theme-standard .fc-scrollgrid {
	border-color: #f3f4f6 !important;
	border-width: 1px !important;
}

.fc-theme-standard td,
.fc-theme-standard th {
	border-color: #f3f4f6 !important;
}

/* Day Headers - Minimal */
.fc .fc-col-header-cell {
	padding: 16px 8px !important;
	background-color: #fafbfc !important;
	border-color: #f3f4f6 !important;
}

.fc .fc-col-header-cell-cushion {
	padding: 0 !important;
	font-weight: 600 !important;
	color: #9ca3af !important;
	text-transform: uppercase !important;
	font-size: 11px !important;
	letter-spacing: 0.8px !important;
}

/* Day Numbers - Clean */
.fc .fc-daygrid-day-number {
	padding: 12px !important;
	font-weight: 600 !important;
	color: #374151 !important;
	font-size: 14px !important;
}

/* Day Cells - Bright White */
.fc .fc-daygrid-day {
	background-color: #ffffff !important;
}

.fc .fc-daygrid-day:hover {
	background-color: #fafbfc !important;
}

/* Today - Subtle Highlight */
.fc .fc-daygrid-day.fc-day-today {
	background-color: #fef5fb !important;
}

.fc .fc-daygrid-day.fc-day-today .fc-daygrid-day-number {
	background: linear-gradient(135deg, #A24A89, #C46AA1) !important;
	color: #ffffff !important;
	border-radius: 8px !important;
	padding: 8px 12px !important;
	display: inline-block !important;
	min-width: 36px !important;
	text-align: center !important;
	box-shadow: 0 2px 8px rgba(162, 74, 137, 0.2) !important;
}

/* Weekend Days - Slightly Different */
.fc .fc-day-sat,
.fc .fc-day-sun {
	background-color: #fafbfc !important;
}

/* Event Styling - Modern Pills with Images */
.fc-event {
	border: none !important;
	border-radius: 8px !important;
	padding: 0 !important;
	font-size: 12px !important;
	font-weight: 600 !important;
	cursor: pointer !important;
	transition: all 0.2s ease !important;
	margin: 2px !important;
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08) !important;
	overflow: hidden !important;
}

.fc-event:hover {
	transform: translateY(-1px) !important;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15) !important;
}

/* Event Wrapper - Image + Text */
.mindful-event-wrapper {
	display: flex;
	align-items: center;
	gap: 8px;
	padding: 6px 10px;
	min-height: 28px;
}

.mindful-event-img {
	width: 24px;
	height: 24px;
	border-radius: 4px;
	object-fit: cover;
	flex-shrink: 0;
}

.mindful-event-text {
	flex: 1;
	min-width: 0;
	display: flex;
	flex-direction: column;
	gap: 2px;
}

.mindful-event-title {
	font-weight: 600 !important;
	font-size: 12px !important;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	line-height: 1.3;
}

.mindful-event-time {
	font-size: 10px !important;
	font-weight: 500 !important;
	opacity: 0.9 !important;
	line-height: 1;
}

/* "More" Link - Styled Popup Trigger */
.fc .fc-daygrid-more-link {
	color: #A24A89 !important;
	font-weight: 700 !important;
	font-size: 12px !important;
	padding: 4px 8px !important;
	border-radius: 6px !important;
	background-color: #fef5fb !important;
	border: 1px solid #f0d9eb !important;
	transition: all 0.2s ease !important;
	margin: 2px !important;
}

.fc .fc-daygrid-more-link:hover {
	background-color: #fce7f6 !important;
	border-color: #e7c1dd !important;
	text-decoration: none !important;
}

/* Popover - Modern Bright Popup */
.fc .fc-popover {
	background-color: #ffffff !important;
	border: 1px solid #e5e7eb !important;
	border-radius: 16px !important;
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12) !important;
	overflow: hidden !important;
}

.fc .fc-popover-header {
	background: linear-gradient(135deg, #fafbfc, #ffffff) !important;
	padding: 16px 20px !important;
	border-bottom: 1px solid #f0f0f1 !important;
}

.fc .fc-popover-title {
	color: #111827 !important;
	font-weight: 700 !important;
	font-size: 16px !important;
}

.fc .fc-popover-close {
	color: #9ca3af !important;
	opacity: 1 !important;
	font-size: 24px !important;
	width: 32px !important;
	height: 32px !important;
	display: flex !important;
	align-items: center !important;
	justify-content: center !important;
	border-radius: 8px !important;
	transition: all 0.2s ease !important;
}

.fc .fc-popover-close:hover {
	background-color: #f3f4f6 !important;
	color: #111827 !important;
}

.fc .fc-popover-body {
	padding: 16px 20px !important;
	max-height: 400px !important;
	overflow-y: auto !important;
}

/* Popover Events - Clean List */
.fc-popover-body .fc-daygrid-event {
	margin-bottom: 8px !important;
	border-radius: 10px !important;
	padding: 10px 12px !important;
}

.fc-popover-body .fc-daygrid-event:last-child {
	margin-bottom: 0 !important;
}

/* Custom Scrollbar for Popover */
.fc .fc-popover-body::-webkit-scrollbar {
	width: 6px;
}

.fc .fc-popover-body::-webkit-scrollbar-track {
	background: #f3f4f6;
	border-radius: 3px;
}

.fc .fc-popover-body::-webkit-scrollbar-thumb {
	background: #d1d5db;
	border-radius: 3px;
}

.fc .fc-popover-body::-webkit-scrollbar-thumb:hover {
	background: #A24A89;
}

/* Event tooltips - Bright Modern */
.mindful-calendar-tooltip {
	position: absolute;
	bottom: 100%;
	left: 50%;
	transform: translateX(-50%);
	background: #ffffff !important;
	color: #111827 !important;
	padding: 12px 16px;
	border-radius: 10px;
	font-size: 13px;
	line-height: 1.6;
	white-space: nowrap;
	z-index: 1000;
	margin-bottom: 8px;
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
	border: 1px solid #f0f0f1;
	pointer-events: none;
}

.mindful-calendar-tooltip strong {
	color: #A24A89;
	display: block;
	margin-bottom: 4px;
}

.mindful-calendar-tooltip::after {
	content: '';
	position: absolute;
	top: 100%;
	left: 50%;
	transform: translateX(-50%);
	border: 6px solid transparent;
	border-top-color: #ffffff;
	filter: drop-shadow(0 2px 2px rgba(0, 0, 0, 0.1));
}

/* List View - Clean Modern */
.fc-list {
	border-color: #f3f4f6 !important;
}

.fc-list-event:hover td {
	background-color: #fafbfc !important;
}

.fc-list-event-title {
	font-weight: 600 !important;
	color: #111827 !important;
}

.fc-list-event-time {
	color: #9ca3af !important;
	font-weight: 500 !important;
}

.fc-list-day-cushion {
	background-color: #fafbfc !important;
	color: #6b7280 !important;
	font-weight: 700 !important;
}

/* Time Grid - Clean Bright */
.fc .fc-timegrid-slot {
	height: 48px !important;
	border-color: #f9fafb !important;
}

.fc-timegrid-slot-label {
	font-size: 12px !important;
	font-weight: 600 !important;
	color: #9ca3af !important;
	padding: 0 8px !important;
}

.fc-timegrid-event {
	border-radius: 8px !important;
	border-left-width: 4px !important;
}

.fc .fc-timegrid-col.fc-day-today {
	background-color: #fef5fb !important;
}

/* Now Indicator - Brand Color */
.fc .fc-timegrid-now-indicator-line {
	border-color: #A24A89 !important;
	border-width: 2px !important;
}

.fc .fc-timegrid-now-indicator-arrow {
	border-color: #A24A89 !important;
	border-width: 6px !important;
}

/* Responsive - Mobile Optimizations */
@media (max-width: 768px) {
	#mindful-calendar-view {
		padding: 20px 16px;
		border-radius: 16px;
	}

	.fc .fc-toolbar {
		flex-direction: column;
		gap: 16px;
		padding-bottom: 16px;
	}

	.fc .fc-toolbar-chunk {
		display: flex;
		justify-content: center;
		gap: 8px;
	}

	.fc .fc-button {
		padding: 8px 14px !important;
		font-size: 13px !important;
	}

	.fc .fc-toolbar-title {
		font-size: 22px !important;
		margin-bottom: 0;
	}

	.fc .fc-daygrid-day-number {
		font-size: 13px !important;
		padding: 8px !important;
	}

	.fc-event {
		font-size: 11px !important;
		padding: 4px 8px !important;
	}

	.fc .fc-popover {
		max-width: 90vw !important;
	}
}

/* Dark Mode Support (Optional Future Enhancement) */
@media (prefers-color-scheme: dark) {
	/* Will be implemented if needed */
}


