.caf-wrap {
	max-width: 720px;
	margin: 0 auto;
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

.caf-notice {
	padding: 10px 14px;
	border-radius: 6px;
	margin-bottom: 16px;
	font-size: 14px;
}
.caf-notice.caf-success { background: #e6f4ea; color: #1e7e34; border: 1px solid #b7dfc2; }
.caf-notice.caf-error   { background: #fbe9e7; color: #b3261e; border: 1px solid #f3c2bd; }

.caf-form {
	display: flex;
	flex-direction: column;
	gap: 6px;
	background: #fff;
	border: 1px solid #e2e2e2;
	border-radius: 10px;
	padding: 24px;
}
.caf-form label {
	font-weight: 600;
	margin-top: 10px;
	font-size: 13px;
	color: #333;
}
.caf-form input,
.caf-form textarea {
	padding: 8px 10px;
	border: 1px solid #cfcfcf;
	border-radius: 6px;
	font-size: 14px;
}

.caf-btn {
	cursor: pointer;
	border: none;
	border-radius: 6px;
	padding: 10px 18px;
	font-size: 14px;
	font-weight: 600;
	margin-top: 14px;
}
.caf-btn-primary { background: #1a56db; color: #fff; }
.caf-btn-primary:hover { background: #133e9e; }
.caf-btn-approve { background: #1e7e34; color: #fff; }
.caf-btn-approve:hover { background: #145c26; }
.caf-btn-reject { background: #b3261e; color: #fff; }
.caf-btn-reject:hover { background: #7f1a15; }
.caf-btn-row { display: flex; gap: 10px; margin-top: 8px; }

.caf-card {
	background: #fff;
	border: 1px solid #e2e2e2;
	border-radius: 10px;
	padding: 18px 20px;
	margin-bottom: 16px;
}
.caf-card h3 { margin: 0 0 8px; }
.caf-card p { margin: 4px 0; font-size: 14px; }
.caf-decide-form textarea {
	width: 100%;
	box-sizing: border-box;
	margin-top: 8px;
	border: 1px solid #cfcfcf;
	border-radius: 6px;
	padding: 8px;
}

.caf-table {
	width: 100%;
	border-collapse: collapse;
	margin-top: 10px;
}
.caf-table th, .caf-table td {
	text-align: left;
	padding: 8px 10px;
	border-bottom: 1px solid #eee;
	font-size: 14px;
}
.caf-table th { background: #f7f7f7; }
