.shabbat-schedule-card {
	max-width: 620px;
	margin: 2.5rem auto;
	padding: 2rem;
	border-radius: 24px;
	background: linear-gradient(135deg, rgba(15, 23, 42, 0.92), rgba(30, 41, 59, 0.88));
	color: #f8fafc;
	box-shadow: 0 28px 60px rgba(15, 23, 42, 0.45);
	border: 1px solid rgba(148, 163, 184, 0.25);
	font-family: "Heebo", "Rubik", "Alef", "Assistant", sans-serif;
}

.shabbat-schedule-card__header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 1.5rem;
}

.shabbat-schedule-card__title {
	margin: 0;
	font-size: 1.6rem;
	font-weight: 700;
	letter-spacing: 0.02em;
}

.shabbat-schedule-card__body {
	display: grid;
	gap: 1rem;
}

.shabbat-schedule-card__loading {
	margin: 0;
	font-size: 1rem;
	color: #cbd5f5;
}

.shabbat-schedule-card__item {
	background: rgba(30, 41, 59, 0.85);
	border-radius: 18px;
	padding: 1rem 1.25rem;
	box-shadow: inset 0 0 0 1px rgba(100, 116, 139, 0.25);
}

.shabbat-schedule-card__label {
	display: block;
	font-size: 0.9rem;
	color: #a5b4fc;
	margin-bottom: 0.25rem;
}

.shabbat-schedule-card__value {
	font-size: 1.15rem;
	font-weight: 600;
	color: #f8fafc;
}

.shabbat-schedule-card__timezone {
	margin-top: 0.5rem;
	font-size: 0.9rem;
	color: #cbd5f5;
}

.shabbat-schedule-card__notice {
	margin-top: 0.75rem;
	font-size: 0.9rem;
	color: #f9a8d4;
	background: rgba(190, 24, 93, 0.18);
	padding: 0.5rem 0.75rem;
	border-radius: 12px;
}

.shabbat-schedule-card__error {
	margin: 0;
	font-size: 1rem;
	color: #fecaca;
}

@media (max-width: 600px) {
	.shabbat-schedule-card {
		margin: 1.5rem auto;
		padding: 1.5rem;
		border-radius: 20px;
	}

	.shabbat-schedule-card__title {
		font-size: 1.4rem;
	}

	.shabbat-schedule-card__item {
		padding: 0.85rem 1rem;
	}

	.shabbat-schedule-card__value {
		font-size: 1rem;
	}
}


