/* Blank monthly calendar generator (לוח חודשי ריק להדפסה). */

.in4u-mc {
	background: #fff;
	border: 1px solid #e0e0e0;
	border-radius: 8px;
	padding: 16px;
	margin: 16px 0;
	font-family: inherit;
	color: #212529;
	direction: rtl;
	text-align: right;
}

.in4u-mc-controls { display: flex; flex-wrap: wrap; gap: 12px 16px; align-items: end; margin-bottom: 12px; }
.in4u-mc-ctrl { display: flex; flex-direction: column; gap: 4px; font-size: 14px; margin: 0; }
.in4u-mc-ctrl > span { font-weight: 600; color: #495057; }
.in4u-mc-ctrl select,
.in4u-mc-ctrl input[type="text"],
.in4u-mc-ctrl input[type="number"] {
	padding: 6px 10px; border: 1px solid #ced4da; border-radius: 4px;
	background: #fff; font-size: 14px; font-family: inherit; min-width: 110px; direction: rtl;
}
.in4u-mc-ctrl input[type="number"] { min-width: 90px; }

.in4u-mc-actions {
	display: flex; flex-wrap: wrap; gap: 8px; align-items: center;
	margin-bottom: 16px; padding-bottom: 12px; border-bottom: 1px solid #f0f0f0;
}
.in4u-mc-btn { padding: 8px 16px; border: 1px solid transparent; border-radius: 4px; font-size: 14px; font-family: inherit; cursor: pointer; transition: filter 0.15s; }
.in4u-mc-btn:hover { filter: brightness(0.95); }
.in4u-mc-btn:disabled { opacity: 0.5; cursor: not-allowed; }
.in4u-mc-btn-primary { background: #2271b1; color: #fff; }
.in4u-mc-btn-secondary { background: #fff; color: #2271b1; border: 1px solid #2271b1; }
.in4u-mc-status { font-size: 13px; color: #6c757d; }

.in4u-mc-sheet { background: #fff; padding: 8px; }
.in4u-mc-caption { font-size: 24px; font-weight: 700; text-align: center; margin-bottom: 12px; }

.in4u-mc-table { border-collapse: collapse; width: 100%; table-layout: fixed; background: #fff; }
.in4u-mc-table th, .in4u-mc-table td { border: 1px solid #adb5bd; }
.in4u-mc-table thead th {
	background: #2271b1; color: #fff; font-weight: 700; font-size: 14px; padding: 8px 4px; text-align: center;
}
.in4u-mc-table td { height: 78px; vertical-align: top; }
.in4u-mc-daynum { font-size: 15px; font-weight: 700; color: #212529; padding: 3px 6px 0; }
.in4u-mc-table td.empty { background: #fafbfc; }

@media (max-width: 560px) {
	.in4u-mc-table thead th { font-size: 12px; }
	.in4u-mc-table td { height: 50px; }
}

@media print {
	.in4u-mc-controls, .in4u-mc-actions { display: none !important; }
	.in4u-mc { border: none; padding: 0; margin: 0; }
	.in4u-mc-table thead th { -webkit-print-color-adjust: exact; print-color-adjust: exact; }
}
