/* Styles from applications.php */
.uicg-applicant-box { display: flex; align-items: center; gap: 10px; }
.uicg-mini-photo { width: 32px; height: 32px; border-radius: 50%; object-fit: cover; border: 1px solid #ddd; }
.uicg-badge { padding: 4px 10px; border-radius: 4px; font-size: 11px; font-weight: 600; display: inline-block; }
.uicg-status-pending { background: #fff8e1; color: #f57c00; border: 1px solid #ffe0b2; }
.uicg-status-approved { background: #e8f5e9; color: #2e7d32; border: 1px solid #c8e6c9; }
.uicg-status-rejected { background: #ffebee; color: #c62828; border: 1px solid #ffcdd2; }
.uicg-type-badge { background: #f0f0f1; padding: 2px 6px; border-radius: 4px; font-size: 11px; color: #3c434a; }
.uicg-app-details-col { font-size: 11px; line-height: 1.4; color: #50575e; }
.action-approve { background: #2e7d32 !important; border-color: #2e7d32 !important; color: white !important; }
.action-approve:hover { background: #1b5e20 !important; }
.action-reject { background: #c62828 !important; border-color: #c62828 !important; color: white !important; }
.action-reject:hover { background: #b71c1c !important; }
.action-delete { color: #d63638 !important; }

/* Styles from templates.php */
.uicg-template-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
	gap: 20px;
	margin-top: 20px;
}
.uicg-template-item {
	background: #fff;
	border: 1px solid #ccd0d4;
	border-radius: 8px;
	overflow: hidden;
	transition: all 0.2s ease-in-out;
	cursor: pointer;
}
.uicg-template-item:hover {
	border-color: #2271b1;
	box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}
.uicg-template-item.active {
	border-color: #2271b1;
	border-width: 2px;
}
.uicg-template-preview img {
	width: 100%;
	height: auto;
	display: block;
	border-bottom: 1px solid #ccd0d4;
}
.uicg-template-info {
	padding: 15px;
}
.uicg-template-info input {
	margin-right: 10px;
}
.uicg-template-info strong {
	display: inline-block;
	font-size: 16px;
	margin-bottom: 5px;
}
.uicg-template-info p {
	margin: 5px 0 0 25px;
	color: #646970;
}

/* Styles from apply-form.php */
.uicg-apply-container {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
    padding: 40px;
    border: 1px solid #f0f0f0;
}
.uicg-apply-header {
    text-align: center;
    margin-bottom: 40px;
    border-bottom: 2px solid #f8fafc;
    padding-bottom: 20px;
}
.uicg-apply-header h2 { margin: 0; color: #1e293b; font-size: 28px; }
.uicg-apply-header p { color: #64748b; margin-top: 10px; }

.uicg-form-section { margin-bottom: 30px; }
.uicg-form-section h3 { font-size: 18px; color: #334155; margin-bottom: 20px; border-left: 4px solid #2563eb; padding-left: 15px; }

.uicg-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.uicg-form-group { margin-bottom: 20px; display: flex; flex-direction: column; }
.uicg-form-group label { font-weight: 600; color: #475569; margin-bottom: 8px; font-size: 14px; }
.uicg-form-group label span { color: #ef4444; }
.uicg-form-group input, .uicg-form-group textarea {
    padding: 12px 16px;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    font-size: 14px;
    transition: all 0.2s;
}
.uicg-form-group input:focus { border-color: #2563eb; outline: none; box-shadow: 0 0 0 3px rgba(37,99,235,0.1); }
.uicg-form-group small { color: #94a3b8; font-size: 12px; margin-top: 5px; }

.uicg-btn-large { width: 100%; padding: 15px; font-size: 16px; border-radius: 8px; }

.uicg-success {
    text-align: center;
    padding: 40px;
    color: #065f46;
}
.uicg-success .dashicons { font-size: 64px; width: 64px; height: 64px; color: #10b981; margin-bottom: 20px; }
.uicg-success h3 { margin-bottom: 10px; }

@media (max-width: 768px) {
    .uicg-form-row { grid-template-columns: 1fr; }
    .uicg-apply-container { padding: 25px; }
}
