/* Candidate Profile CSS */
.pcs-profile-section {
	background: rgba(255, 255, 255, 0.7);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	border: 1px solid rgba(255, 255, 255, 0.3);
	border-radius: 12px;
	padding: 24px;
	margin-bottom: 24px;
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
	font-family: 'Inter', sans-serif;
	color: #333;
}

.pcs-profile-section h3 {
	margin-top: 0;
	border-bottom: 2px solid #e2e8f0;
	padding-bottom: 12px;
	font-size: 1.5rem;
	color: #1a202c;
}

/* Completion Bar */
.pcs-completion-bar {
	background: #edf2f7;
	border-radius: 999px;
	height: 12px;
	width: 100%;
	overflow: hidden;
	margin-bottom: 20px;
}
.pcs-completion-fill {
	background: linear-gradient(90deg, #4299e1, #3182ce);
	height: 100%;
	text-align: right;
	padding-right: 8px;
	color: white;
	font-size: 10px;
	line-height: 12px;
	transition: width 0.5s ease;
}

/* Forms */
.pcs-form-modal {
	background: #f7fafc;
	border: 1px solid #e2e8f0;
	border-radius: 8px;
	padding: 20px;
	margin-top: 20px;
}
.pcs-form-group {
	margin-bottom: 16px;
}
.pcs-form-group label {
	display: block;
	font-weight: 600;
	margin-bottom: 6px;
	color: #4a5568;
}
.pcs-form-group input[type="text"],
.pcs-form-group input[type="date"],
.pcs-form-group input[type="number"],
.pcs-form-group select,
.pcs-form-group textarea {
	width: 100%;
	padding: 10px;
	border: 1px solid #cbd5e0;
	border-radius: 6px;
	background: #fff;
}
.pcs-form-actions {
	margin-top: 20px;
	display: flex;
	gap: 12px;
}

/* Buttons */
.pcs-btn {
	padding: 8px 16px;
	border-radius: 6px;
	border: none;
	cursor: pointer;
	font-weight: 600;
	transition: all 0.2s ease;
	text-decoration: none;
	display: inline-block;
}
.pcs-btn-primary {
	background: #3182ce;
	color: #fff;
}
.pcs-btn-primary:hover {
	background: #2b6cb0;
	transform: translateY(-1px);
}
.pcs-btn-secondary {
	background: #e2e8f0;
	color: #4a5568;
}
.pcs-btn-secondary:hover {
	background: #cbd5e0;
}
.pcs-btn-edit { background: #ecc94b; color: #744210; margin-right: 8px; }
.pcs-btn-delete { background: #f56565; color: #fff; }
.pcs-btn-edit-sm, .pcs-btn-delete-sm, .pcs-btn-primary-sm {
	padding: 4px 8px;
	font-size: 0.8rem;
}

/* Lists and Tables */
.pcs-education-item, .pcs-experience-item, .pcs-resume-item {
	padding: 16px;
	border-bottom: 1px solid #e2e8f0;
}
.pcs-education-item:last-child, .pcs-experience-item:last-child, .pcs-resume-item:last-child {
	border-bottom: none;
}
.pcs-table {
	width: 100%;
	border-collapse: collapse;
	margin-bottom: 16px;
}
.pcs-table th, .pcs-table td {
	text-align: left;
	padding: 12px;
	border-bottom: 1px solid #e2e8f0;
}

.pcs-status {
	padding: 4px 8px;
	border-radius: 999px;
	font-size: 0.8rem;
	font-weight: bold;
}
.pcs-status-pending { background: #fefcbf; color: #975a16; }
.pcs-status-verified { background: #c6f6d5; color: #22543d; }
.pcs-status-rejected { background: #fed7d7; color: #822727; }

.pcs-badge {
	background: #ebf8ff;
	color: #2b6cb0;
	padding: 2px 8px;
	border-radius: 999px;
	font-size: 0.8rem;
}
