/**
 * Enrollment application View modal (academy dashboard + admin Applications).
 */

#ao-app-modal.ao-app-modal {
	display: none;
	position: fixed;
	inset: 0;
	z-index: 100000;
	max-width: 100% !important;
	width: 100%;
	box-sizing: border-box;
	padding: 24px;
	margin: 0;
	background: rgba(15, 23, 42, 0.45);
	align-items: center;
	justify-content: center;
}

#ao-app-modal.ao-app-modal.is-open {
	display: flex;
}

.ao-app-modal__panel {
	background: #fff;
	border-radius: 12px;
	max-width: 720px;
	width: 100%;
	max-height: 85vh;
	overflow: auto;
	padding: 20px;
	box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
	box-sizing: border-box;
}

.ao-app-modal__header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	margin-bottom: 16px;
}

.ao-app-modal__title {
	margin: 0;
	font-size: 1.125rem;
	font-weight: 600;
	line-height: 1.3;
	color: #0f172a;
}

.ao-app-modal__close-x {
	flex-shrink: 0;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 36px;
	min-height: 36px;
	padding: 0;
	border: 1px solid #e2e8f0;
	border-radius: 8px;
	background: #fff;
	color: #334155;
	font-size: 1.5rem;
	line-height: 1;
	cursor: pointer;
	transition: background 0.15s ease, border-color 0.15s ease;
}

.ao-app-modal__close-x:hover,
.ao-app-modal__close-x:focus {
	background: #f8fafc;
	border-color: #cbd5e1;
	outline: none;
}

.ao-app-modal__body {
	font-size: 14px;
	line-height: 1.5;
	color: #334155;
}

.ao-app-modal__footer {
	margin-top: 16px;
	padding-top: 16px;
	border-top: 1px solid #e2e8f0;
}

.ao-app-detail-section {
	margin-bottom: 1.25rem;
}

.ao-app-detail-section:last-child {
	margin-bottom: 0;
}

.ao-app-detail-section__title {
	margin: 0 0 0.5rem;
	font-size: 14px;
	font-weight: 600;
	color: #0f172a;
}

.ao-app-detail-table {
	width: 100%;
	border-collapse: collapse;
	font-size: 13px;
}

.ao-app-detail-table th,
.ao-app-detail-table td {
	padding: 8px 10px;
	vertical-align: top;
	border-bottom: 1px solid #f1f5f9;
}

.ao-app-detail-table tr:last-child th,
.ao-app-detail-table tr:last-child td {
	border-bottom: none;
}

.ao-app-detail-table th {
	text-align: left;
	width: 38%;
	font-weight: 500;
	color: #64748b;
}

.ao-app-detail-table td {
	color: #0f172a;
	word-break: break-word;
}

.ao-app-detail-loading,
.ao-app-detail-empty {
	color: #64748b;
	font-size: 13px;
	margin: 0;
}

/* Admin shell: sit above AcademyOS sidebar */
body.academyos-admin #ao-app-modal.ao-app-modal {
	z-index: 100001;
}
