/* myMasjid Prayer Times — front-end banner.
 * Matches the existing dark-green timetable style already used on masjid
 * homepages. Exact colours can be tuned once placed in the real theme —
 * these are close approximations of the current live design. */

.mymasjid-pt-banner {
	/* Exact colours pulled from the live site's own timetable banner. */
	background: #004a40;
	color: #dcb66e;
	padding: 20px 10px;
	font-family: inherit;
}

.mymasjid-pt-fallback-notice {
	background: #fdf3d0;
	color: #6b5b1e;
	text-align: center;
	padding: 10px 16px;
	margin: -20px -10px 20px -10px;
	font-size: 14px;
}

.mymasjid-pt-row {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	text-align: center;
}

.mymasjid-pt-cell {
	flex: 1 1 120px;
	min-width: 100px;
	padding: 0 12px;
	border-right: 1px solid rgba(220, 182, 110, 0.25);
}

.mymasjid-pt-cell:last-child {
	border-right: none;
}

.mymasjid-pt-label-cell {
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	color: rgba(220, 182, 110, 0.7);
	font-size: 13px;
	border-right: 1px solid rgba(220, 182, 110, 0.25);
}

.mymasjid-pt-spacer {
	height: 52px;
}

.mymasjid-pt-row-label {
	padding: 2px 0;
	white-space: nowrap;
}

.mymasjid-pt-icon {
	font-size: 22px;
	margin-bottom: 4px;
}

.mymasjid-pt-name {
	color: #dcb66e;
	font-weight: 700;
	margin-bottom: 8px;
}

.mymasjid-pt-time {
	padding: 2px 0;
}

.mymasjid-pt-time-dim {
	opacity: 0;
}

@media (max-width: 600px) {
	.mymasjid-pt-cell {
		flex: 1 1 45%;
		margin-bottom: 12px;
	}
	.mymasjid-pt-label-cell {
		display: none; /* on narrow phones, rely on the sun/moon icons instead of the label column */
	}
}

/* Hijri date */
.mymasjid-pt-hijri-date {
	font-style: italic;
}

/* Ramadan countdown */
.mymasjid-pt-ramadan-countdown {
	display: inline-flex;
	gap: 8px;
	align-items: baseline;
	background: #004a40;
	color: #dcb66e;
	padding: 10px 16px;
	border-radius: 4px;
	font-size: 15px;
}
.mymasjid-pt-ramadan-time {
	font-weight: 700;
	font-variant-numeric: tabular-nums;
}

/* Printable monthly timetable */
.mymasjid-pt-print-btn {
	background: #004a40;
	color: #dcb66e;
	border: none;
	padding: 8px 16px;
	border-radius: 4px;
	cursor: pointer;
	margin-bottom: 12px;
}
.mymasjid-pt-print-sheet {
	background: #fff;
	color: #222;
	padding: 20px;
}
.mymasjid-pt-print-header,
.mymasjid-pt-print-footer {
	text-align: center;
	margin-bottom: 12px;
}
.mymasjid-pt-print-table {
	width: 100%;
	border-collapse: collapse;
	font-size: 13px;
}
.mymasjid-pt-print-table th,
.mymasjid-pt-print-table td {
	border: 1px solid #ccc;
	padding: 4px 6px;
	text-align: center;
}
.mymasjid-pt-print-table thead {
	background: #004a40;
	color: #fff;
}
