/* Basic typography and container */
body .max-w-4xl { max-width: 56rem; }
.max-w-4xl { margin-left: auto; margin-right: auto; }
.p-6 { padding: 1.5rem; }
.text-2xl { font-size: 1.5rem; line-height: 2rem; }
.font-bold { font-weight: 700; }
.mb-4 { margin-bottom: 1rem; }
.text-gray-600 { color: #4b5563; }
.text-sm { font-size: 0.875rem; }
.p-4 { padding: 1rem; }
.border { border: 1px solid #e5e7eb; }
.rounded-lg { border-radius: 0.5rem; }
.bg-gray-50 { background-color: #f9fafb; }
.mb-6 { margin-bottom: 1.5rem; }
.block { display: block; }
.text-sm { font-size: 0.875rem; }
.font-medium { font-weight: 500; }
.w-full { width: 100%; }
.p-2 { padding: 0.5rem; }
.rounded { border-radius: 0.375rem; }
.mt-1 { margin-top: 0.25rem; }
.bg-white { background: #ffffff; }
.text-red-600 { color: #dc2626; }
.text-red-700 { color: #b91c1c; }
.font-semibold { font-weight: 600; }
.text-base { font-size: 1rem; }
.grid { display: grid; }
.grid-cols-2 { grid-template-columns: repeat(2, 1fr); }
.gap-4 { grid-gap: 1rem; }
.mt-3 { margin-top: 0.75rem; }
.space-y-10 > * + * { margin-top: 2.5rem; }

/* Month/week table styles */
.p-3 { padding: 0.75rem; }
.mb-5 { margin-bottom: 1.25rem; }
.bg-gray-100 { background: #f3f4f6; }
.bg-gray-200 { background: #e5e7eb; }
.text-left { text-align: left; }
.w-full { width: 100%; }
.text-sm { font-size: 0.875rem; }
.border-t { border-top: 1px solid #e6edf3; }
.p-2 { padding: 0.5rem; }
.cc-table, table.cc-table { width: 100%; border-collapse: collapse; }
.cc-table th, .cc-table td, .w-full th, .w-full td { border: 1px solid #e6edf3; padding: 0.5rem; font-size: 0.875rem; }
.text-green-600 { color: #16a34a; }
.text-red-600 { color: #dc2626; }

/* Small helpers */
.font-medium { font-weight: 500; }
.text-lg { font-size: 1.125rem; }
.mt-4 { margin-top: 1rem; }
.mt-2 { margin-top: 0.5rem; }
.mb-3 { margin-bottom: 0.75rem; }
.cc-lead { color:#374151; }

/* Blog list (if present) */
.cc-blog-list { list-style: disc; padding-left: 20px; margin-top: 8px; background: #f3f4f6; padding: 12px; border-radius: 8px; }
.cc-blog-list li { margin: 8px 0; }
.cc-blog-list a { color: #1d4ed8; text-decoration: none; font-weight: 600; }

/* Input and notice styling fallback */
input[type=number], input[type=text] { padding: 8px; border: 1px solid #cbd5e1; border-radius: 6px; max-width: 100%; box-sizing: border-box; }
.cc-notice { background: #f8fafc; border-left: 4px solid #3b82f6; padding: 8px; color: #111827; font-size: 13px; }

/* Utility spacing */
.mt-1 { margin-top: 0.25rem; }
.gap-4 { gap: 1rem; }

/* Responsive tweaks */
@media (max-width: 768px) {
	.grid-cols-2 { grid-template-columns: 1fr; }
}
