.ppd-appt-form p {
	margin-bottom: 14px;
}
.ppd-appt-form label {
	display: block;
	font-weight: 600;
	margin-bottom: 4px;
}
.ppd-appt-form input[type="text"],
.ppd-appt-form input[type="email"],
.ppd-appt-form input[type="password"],
.ppd-appt-form input[type="date"],
.ppd-appt-form select,
.ppd-appt-form textarea {
	width: 100%;
	max-width: 420px;
	padding: 8px 10px;
	border: 1px solid #ccc;
	border-radius: 4px;
	box-sizing: border-box;
}
.ppd-appt-form button {
	background: #7a1f2b;
	color: #fff;
	border: none;
	padding: 10px 20px;
	border-radius: 4px;
	cursor: pointer;
	font-weight: 600;
}
.ppd-appt-form button:hover {
	background: #5f1720;
}
.ppd-appt-notice {
	padding: 12px 14px;
	border-radius: 4px;
	margin-bottom: 16px;
}
.ppd-appt-success {
	background: #e6f4ea;
	color: #1e7b34;
	border: 1px solid #b7e1c1;
}
.ppd-appt-error {
	background: #fbe9e7;
	color: #a02c1f;
	border: 1px solid #f3c2ba;
}

.ppd-appt-dashboard-filters {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 16px;
	flex-wrap: wrap;
}
.ppd-appt-table {
	width: 100%;
	border-collapse: collapse;
	font-size: 13px;
}
.ppd-appt-table th,
.ppd-appt-table td {
	border: 1px solid #ddd;
	padding: 6px 8px;
	text-align: left;
	vertical-align: top;
}
.ppd-appt-table th {
	background: #2f4f3f;
	color: #fff;
}
.ppd-appt-table input,
.ppd-appt-table select {
	width: 100%;
	box-sizing: border-box;
	padding: 3px 4px;
	font-size: 13px;
	border: 1px solid #ccc;
	border-radius: 3px;
}
.ppd-appt-table .ppd-save-btn {
	background: #2f4f3f;
	color: #fff;
	border: none;
	padding: 4px 8px;
	border-radius: 3px;
	cursor: pointer;
	font-size: 12px;
}
.ppd-appt-status-scheduled { color: #a06a00; }
.ppd-appt-status-checked_in { color: #1a6fb0; }
.ppd-appt-status-completed { color: #1e7b34; }
.ppd-appt-status-cancelled { color: #a02c1f; text-decoration: line-through; }
