/* NBU University Manager — public (shortcode) styles */

.num-form {
	max-width: 560px;
	margin: 1em 0 2em;
}
.num-form p {
	margin: 0 0 1em;
}
.num-form label {
	font-weight: 600;
	display: block;
}
.num-form input[type="text"],
.num-form input[type="email"],
.num-form input[type="tel"],
.num-form input[type="date"],
.num-form input[type="number"],
.num-form select,
.num-form textarea {
	width: 100%;
	max-width: 100%;
	box-sizing: border-box;
	padding: 8px 10px;
	border: 1px solid #8c8f94;
	border-radius: 4px;
	font-weight: 400;
	margin-top: 4px;
}
.num-form input:focus,
.num-form select:focus,
.num-form textarea:focus {
	outline: 2px solid #2271b1;
	outline-offset: 1px;
}

/* Honeypot field: visually hidden, still fillable by naive bots */
.num-hp {
	position: absolute !important;
	left: -9999px !important;
	height: 1px;
	width: 1px;
	overflow: hidden;
}

.num-btn {
	display: inline-block;
	background: #1a3a5c;
	color: #fff;
	border: none;
	border-radius: 4px;
	padding: 10px 22px;
	font-size: 15px;
	cursor: pointer;
	text-decoration: none;
}
.num-btn:hover,
.num-btn:focus {
	background: #274f7a;
	color: #fff;
}
.num-btn-small {
	padding: 5px 14px;
	font-size: 13px;
}

/* Notices */
.num-notice {
	border-left: 4px solid;
	border-radius: 3px;
	padding: 12px 16px;
	margin: 1em 0;
}
.num-notice-success {
	border-color: #007017;
	background: #edfaef;
}
.num-notice-error {
	border-color: #8a1f11;
	background: #fcf0f1;
}

/* Result card */
.num-result-card {
	border: 1px solid #c3c4c7;
	border-radius: 6px;
	padding: 18px 22px;
	margin: 1.5em 0;
	background: #fff;
}
.num-result-table {
	width: 100%;
	border-collapse: collapse;
	margin: 0.8em 0;
}
.num-result-table th,
.num-result-table td {
	border: 1px solid #dcdcde;
	padding: 7px 10px;
	text-align: left;
}
.num-result-table th {
	background: #f6f7f7;
}

/* Research repository listing */
.num-repo-search input[type="text"] {
	max-width: 420px;
	display: inline-block;
	margin-right: 8px;
}
.num-repo-list {
	margin-top: 1em;
}
.num-repo-item {
	border: 1px solid #dcdcde;
	border-radius: 6px;
	padding: 16px 20px;
	margin-bottom: 16px;
	background: #fff;
}
.num-repo-item h3 {
	margin: 0 0 4px;
}
.num-repo-meta {
	color: #50575e;
	font-size: 0.9em;
	margin: 0 0 8px;
}
.num-repo-keywords {
	font-size: 0.85em;
	color: #646970;
}
.num-repo-links {
	margin-bottom: 0;
}
.num-license {
	font-size: 0.85em;
	color: #646970;
}
