@import '_content/Blazored.Toast/Blazored.Toast.bundle.scp.css';
@import '_content/Microsoft.AspNetCore.Components.QuickGrid/Microsoft.AspNetCore.Components.QuickGrid.boiwgh0w5b.bundle.scp.css';
@import '_content/RCL/RCL.khsxr40nsa.bundle.scp.css';

/* /Features/Calendar/Carousel.razor.rz.scp.css */
.carousel-container[b-4oj7muxop1] {
	max-width: 900px;
	margin: 20px auto;
	padding: 20px;
	background-color: #f8f9fa;
	border-radius: 10px;
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.carousel-content[b-4oj7muxop1] {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	height: 100%;
	padding: 20px;
	text-align: center;
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	color: white;
	border-radius: 8px;
}

.carousel-content img[b-4oj7muxop1] {
	max-width: 100%;
	max-height: 250px;
	border-radius: 8px;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
	margin-bottom: 15px;
}

.carousel-content p[b-4oj7muxop1] {
	margin: 0;
	font-size: 1rem;
	line-height: 1.4;
	max-width: 500px;
	text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

/* /Features/CalendarText/Index.razor.rz.scp.css */
.my-calendar[b-oqk2xq8o2w] {
	display: grid;
	grid-template-columns: repeat(7, 1fr);
	gap: 0;
	/* optional: border, min-height-per-row etc */
}

.day[b-oqk2xq8o2w] {
	border: 1px solid #ccc;
	min-height: 100px; /* or whatever you need */
	position: relative; /* ← very important! */
	background: white;
	padding: 8px;
	box-sizing: border-box;
}

.gregorian[b-oqk2xq8o2w] {
	/* normal content styling */
}

.hebrew-overlay[b-oqk2xq8o2w] {
	position: absolute;
	inset: 0; /* fill the parent cell */
	transform: translateX(-25%); /* shift left by 25% of cell width */
	background: rgba(240, 248, 255, 0.92); /* light blue-ish, semi-transparent */
	border: 1px solid #3b82f6;
	border-left: 3px solid #1d4ed8; /* visual cue for "starts earlier" */
	padding: 8px;
	box-sizing: border-box;
	pointer-events: none; /* optional: let clicks go through to gregorian underneath */
	z-index: 1;
}

/* Optional: make it only cover ~75–80% so previous day is still partially visible */
.hebrew-overlay[b-oqk2xq8o2w] {
	width: 125%; /* extends rightward to compensate for left shift */
	transform: translateX(-25%);
}

.calendar-wrapper[b-oqk2xq8o2w] {
	position: relative;
}

.my-calendar.gregorian-layer[b-oqk2xq8o2w] {
	/* as before */
}

.hebrew-overlay-layer[b-oqk2xq8o2w] {
	position: absolute;
	inset: 0;
	display: grid;
	grid-template-columns: repeat(7, 1fr);
	pointer-events: none;
}

	.hebrew-overlay-layer > .hebrew-day[b-oqk2xq8o2w] {
		grid-column: 3; /* example: Wednesday */
		transform: translateX(-25%);
		background: rgba(200, 230, 255, 0.9);
		border: 1px solid royalblue;
		margin: 1px; /* subtle separation */
		z-index: 2;
		/* height comes from content or min-height */
	}
/* /Features/SukkotIndexCard.razor.rz.scp.css */
/* Component-scoped CSS for SukkotIndex.razor */

.sukkot-logo[b-6degeqe20z] {
	width: 380px; /* default (xs) */
	height: auto;
	max-width: 100%; /* prevent overflow inside containers */
	display: inline-block;
}

.footer[b-6degeqe20z] {
	background: linear-gradient(to right, #6c757d, #adb5bd); /* Grey gradient left to right */
	padding: 1rem 0;
	text-align: center;
	margin-top: 0.5rem; /* Reduced margin top */
}
	.footer a[b-6degeqe20z] {
		color: #ffffff;
		text-decoration: none;
		transition: color 0.3s;
	}

		.footer a:hover[b-6degeqe20z] {
			color: #f8f9fa;
		}


/* Adjust sizes using Bootstrap-like breakpoints */
@media (min-width: 576px) {
	.sukkot-logo[b-6degeqe20z] {
		width: 520px;
	}
}

@media (min-width: 768px) {
	.sukkot-logo[b-6degeqe20z] {
		width: 620px;
	}
}

@media (min-width: 992px) {
	.sukkot-logo[b-6degeqe20z] {
		width: 720px;
	}
}

@media (min-width: 1200px) {
	.sukkot-logo[b-6degeqe20z] {
		width: 820px;
	}
}

/* Alternative: fluid sizing using clamp (uncomment to use)
.sukkot-logo {
  width: clamp(120px, 25vw, 520px);
}
*/
/* /Layout/MainLayout.razor.rz.scp.css */
#blazor-error-ui[b-tektmjm0k4] {
    color-scheme: light only;
    background: lightyellow;
    bottom: 0;
    box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2);
    box-sizing: border-box;
    display: none;
    left: 0;
    padding: 0.6rem 1.25rem 0.7rem 1.25rem;
    position: fixed;
    width: 100%;
    z-index: 1000;
}

    #blazor-error-ui .dismiss[b-tektmjm0k4] {
        cursor: pointer;
        position: absolute;
        right: 0.75rem;
        top: 0.5rem;
    }
