.mpc-inventory-wrap {
	max-width: 700px;
	margin: 20px auto;
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
}

.mpc-inventory-title {
	margin: 0 0 16px;
	font-size: 20px;
	color: #1d2327;
}

.mpc-inventory-form {
	background: #f6f7f7;
	border: 1px solid #dcdcde;
	border-radius: 8px;
	padding: 16px;
	margin-bottom: 20px;
}

.mpc-inventory-form-row {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

.mpc-inventory-select,
.mpc-inventory-amount,
.mpc-inventory-unit {
	box-sizing: border-box;
	padding: 8px 10px;
	border: 1px solid #dcdcde;
	border-radius: 6px;
	font-size: 14px;
}

.mpc-inventory-select {
	flex: 2 1 200px;
}

.mpc-inventory-amount {
	flex: 1 1 100px;
}

.mpc-inventory-unit {
	flex: 1 1 100px;
}

.mpc-inventory-add-btn {
	flex: 1 1 160px;
	padding: 8px 14px;
	background: #2271b1;
	color: #fff;
	border: none;
	border-radius: 6px;
	font-weight: 600;
	cursor: pointer;
}

.mpc-inventory-add-btn:hover {
	background: #135e96;
}

.mpc-inventory-feedback {
	margin: 10px 0 0;
	font-size: 13px;
	color: #2271b1;
	min-height: 16px;
}

.mpc-inventory-table {
	width: 100%;
	border-collapse: collapse;
	background: #fff;
	border: 1px solid #dcdcde;
	border-radius: 8px;
	overflow: hidden;
}

.mpc-inventory-table th,
.mpc-inventory-table td {
	padding: 10px 12px;
	text-align: left;
	font-size: 14px;
	border-bottom: 1px solid #f0f0f1;
}

.mpc-inventory-table th {
	background: #f0f0f1;
	font-size: 12px;
	text-transform: uppercase;
	letter-spacing: 0.03em;
	color: #555;
}

.mpc-inventory-table tr:last-child td {
	border-bottom: none;
}

.mpc-inventory-table tr.mpc-untracked td {
	color: #888;
}

.mpc-inventory-table tr.mpc-low-stock td {
	color: #b32d2e;
	font-weight: 600;
}

.mpc-inventory-note {
	margin-top: 14px;
	font-size: 12px;
	color: #777;
}

@media (max-width: 480px) {
	.mpc-inventory-table th:nth-child(3),
	.mpc-inventory-table td:nth-child(3) {
		display: none;
	}
}
	max-width: 360px;
	margin: 40px auto;
	padding: 24px;
	background: #fff;
	border: 1px solid #dcdcde;
	border-radius: 8px;
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
}

.mpc-login-title {
	margin: 0 0 16px;
	font-size: 18px;
	color: #1d2327;
	text-align: center;
}

.mpc-login-wrap form p {
	margin: 0 0 12px;
}

.mpc-login-wrap label {
	display: block;
	margin-bottom: 4px;
	font-weight: 600;
	font-size: 13px;
	color: #333;
}

.mpc-login-wrap input[type="text"],
.mpc-login-wrap input[type="password"] {
	width: 100%;
	box-sizing: border-box;
	padding: 8px 10px;
	border: 1px solid #dcdcde;
	border-radius: 4px;
	font-size: 14px;
}

.mpc-login-wrap input[type="submit"] {
	width: 100%;
	padding: 10px;
	background: #2271b1;
	color: #fff;
	border: none;
	border-radius: 6px;
	font-weight: 600;
	cursor: pointer;
}

.mpc-login-wrap input[type="submit"]:hover {
	background: #135e96;
}

.mpc-login-wrap .forgetmenot {
	display: flex;
	align-items: center;
	gap: 6px;
	font-weight: normal;
}

.mpc-calendar {
	max-width: 700px;
	margin: 20px auto;
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
}

.mpc-calendar .mpc-today-banner {
	display: block;
	box-sizing: border-box;
	width: 100%;
	max-width: 100%;
	background: #1d2327;
	color: #fff;
	text-align: center;
	font-weight: 700;
	font-size: 15px;
	padding: 12px 10px;
	border: none;
	border-radius: 6px;
	margin: 0 0 12px;
	letter-spacing: 0.02em;
	cursor: pointer;
	transition: background 0.15s ease;
}

.mpc-calendar .mpc-today-banner:hover {
	background: #2c3238;
}

.mpc-calendar .mpc-today-banner.mpc-active {
	background: #2271b1;
}

.mpc-export-link {
	display: block;
	text-align: center;
	font-size: 13px;
	font-weight: 600;
	color: #2271b1;
	text-decoration: none;
	margin-bottom: 16px;
	padding: 6px;
}

.mpc-export-link:hover {
	text-decoration: underline;
}

.mpc-days {
	display: grid;
	grid-template-columns: repeat(6, 1fr);
	gap: 6px;
	margin-bottom: 16px;
}

.mpc-day-tab {
	box-sizing: border-box;
	width: 100%;
	padding: 10px 4px;
	background: #f0f0f1;
	border: 1px solid #dcdcde;
	border-radius: 6px;
	cursor: pointer;
	font-weight: 600;
	font-size: 13px;
	color: #333;
	white-space: nowrap;
	transition: background 0.15s ease, color 0.15s ease;
}

.mpc-day-tab:hover {
	background: #e4e4e6;
}

.mpc-day-tab.mpc-active {
	background: #2271b1;
	color: #fff;
	border-color: #2271b1;
}

@media (max-width: 700px) {
	.mpc-days {
		grid-template-columns: repeat(3, 1fr);
	}
}

@media (max-width: 480px) {
	.mpc-days {
		grid-template-columns: repeat(2, 1fr);
		gap: 5px;
	}
	.mpc-day-tab {
		font-size: 12px;
		padding: 9px 3px;
	}
	.mpc-day-title {
		font-size: 18px;
	}
}

.mpc-panel {
	display: none;
	background: #fff;
	border: 1px solid #dcdcde;
	border-radius: 8px;
	padding: 20px;
}

.mpc-panel.mpc-active {
	display: block;
}

.mpc-day-title {
	margin: 0 0 14px;
	font-size: 20px;
	color: #1d2327;
}

.mpc-meal-list {
	list-style: none;
	margin: 0;
	padding: 0;
}

.mpc-meal-item {
	display: flex;
	flex-direction: column;
	padding: 10px 0;
	border-bottom: 1px solid #f0f0f1;
}

.mpc-meal-item:last-child {
	border-bottom: none;
}

.mpc-meal-label {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	background: none;
	border: none;
	padding: 0;
	margin-bottom: 4px;
	font-weight: 700;
	color: #2271b1;
	font-size: 13px;
	text-transform: uppercase;
	letter-spacing: 0.03em;
	cursor: pointer;
	text-align: left;
}

.mpc-meal-label:hover {
	color: #135e96;
}

.mpc-meal-toggle-icon {
	font-size: 16px;
	line-height: 1;
	font-weight: 700;
	margin-left: 8px;
	transition: transform 0.15s ease;
}

.mpc-meal-item.mpc-meal-open .mpc-meal-toggle-icon {
	transform: rotate(45deg);
}

.mpc-meal-desc {
	color: #333;
	font-size: 15px;
	line-height: 1.5;
}

.mpc-meal-checklist {
	display: none;
	flex-direction: column;
	gap: 8px;
	margin-top: 10px;
	padding: 12px;
	background: #f6f7f7;
	border-radius: 6px;
}

.mpc-meal-item.mpc-meal-open .mpc-meal-checklist {
	display: flex;
}

.mpc-checklist-option {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 14px;
	color: #333;
	cursor: pointer;
	padding: 2px 4px;
	border-radius: 4px;
	transition: background 0.2s ease;
}

.mpc-checklist-option input[type="checkbox"] {
	width: 16px;
	height: 16px;
	cursor: pointer;
	accent-color: #2271b1;
}

.mpc-checklist-option.mpc-saving {
	opacity: 0.6;
}

.mpc-checklist-option.mpc-saved {
	background: #d7f2df;
}

