/* Recruit Post Distributor — Admin Styles */

.rpd-meta-section {
	margin-bottom: 20px;
	padding-bottom: 15px;
	border-bottom: 1px solid #ddd;
}

.rpd-meta-section h4 {
	margin: 0 0 10px;
	color: #23282d;
}

.rpd-channels label {
	margin-right: 15px;
	display: inline-flex;
	align-items: center;
	gap: 5px;
}

.rpd-log-table .status-success {
	color: #46b450;
}

.rpd-log-table .status-failed {
	color: #dc3232;
}

.rpd-schedule-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 20px;
}

.rpd-day-checkboxes label {
	margin-right: 8px;
	display: inline-flex;
	align-items: center;
	gap: 4px;
}

/* Apply Form (frontend) */
.rpd-apply-wrap {
	max-width: 600px;
	margin: 0 auto;
	padding: 20px 0;
}
.rpd-apply-form p {
	margin-bottom: 16px;
}
.rpd-apply-form label {
	display: block;
	font-weight: bold;
	margin-bottom: 4px;
}
.rpd-input {
	width: 100%;
	padding: 8px 10px;
	border: 1px solid #ccc;
	border-radius: 4px;
	font-size: 15px;
	box-sizing: border-box;
}
.rpd-submit-btn {
	background: #0073aa;
	color: #fff;
	border: none;
	padding: 10px 28px;
	font-size: 15px;
	border-radius: 4px;
	cursor: pointer;
}
.rpd-submit-btn:hover {
	background: #005d8c;
}
.rpd-required {
	color: #c00;
}
.rpd-apply-success {
	background: #eaffea;
	border: 1px solid #46b450;
	padding: 12px 16px;
	border-radius: 4px;
	color: #2a6a2a;
}
.rpd-apply-error {
	background: #fff0f0;
	border: 1px solid #dc3232;
	padding: 12px 16px;
	border-radius: 4px;
	color: #8a0000;
}
