.ihe-gpa-wrap {
	max-width: 880px;
	margin: auto;
	padding: 16px;
	border: 1px solid #e5e7eb;
	border-radius: 12px;
	background: #fff;
}
.ihe-row {
	display: flex;
	gap: 12px;
	align-items: flex-start;
	flex-wrap: wrap;
}
.ihe-field {
	flex: 1 1 220px;
	min-width: 220px;
}
.ihe-label {
	display: block;
	font-weight: 600;
	margin-bottom: 6px;
}
.ihe-input {
	width: 100%;
	padding: 10px 12px;
	border: 1px solid #d1d5db;
	border-radius: 8px;
	font-size: 16px;
}
/* .ihe-btn {
	padding: 10px 16px;
	border: 0;
	border-radius: 8px;
	background: #111827;
	color: #fff;
	font-size: 16px;
	font-weight: 500;
	cursor: pointer;
} */
/* .ihe-btn:hover {
	background: #000;
} */
.secondary.ihe-btn{
	padding: 12px 16px;
}
.ihe-note {
	font-size: 12px;
	color: #6b7280;
	margin-top: 6px;
}
.ihe-gpa-result {
	margin-top: 18px;
}
.ihe-loading {
	padding: 10px 12px;
	background: #f3f4f6;
	border-radius: 8px;
	display: inline-block;
}
.ihe-text {
    text-align: center;
    padding: 5px 25px 20px 25px;
    font-size: 18px;
    font-weight: 500;
	color: #00005e;
}
.ihe-grid-title {
    text-align: center;
    margin-top: 25px;
    font-size: 25px;
    font-weight: 600;
}
.ihe-alert {
	/* padding: 12px 14px; */
	border-radius: 8px;
	margin: 10px 0;
}
.ihe-alert-err {
	/* background: #fef2f2; */
	color: #991b1b;
	/* border: 1px solid #fecaca; */
}
.ihe-logos {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	align-items: center;
	margin: 25px 0;
	row-gap: 20px;
	column-gap: 20px;
	justify-content: center;
}
.ihe-logos img {
	max-height: 70px;
	width: auto;
	display: block;
}
.ihe-msg {
	padding: 12px 14px;
	background: #ecfdf5;
	color: #065f46;
	border: 1px solid #a7f3d0;
	border-radius: 8px;
	margin: 12px 0;
}
.ihe-table {
	width: 100%;
	border-collapse: collapse;
	margin-top: 8px;
}
.ihe-table th,
.ihe-table td {
	border: 1px solid #e5e7eb;
	padding: 10px 12px;
	vertical-align: middle;
}
.ihe-table th {
	background: #f9fafb;
	text-align: center;
}
.ihe-logo-cell img {
	max-height: 48px;
}
.ihe-grid {
	/* display: grid;
	grid-template-columns: repeat(3, 1fr); */
	display: flex;
    flex-wrap: wrap;
    justify-content: center;
	gap: 15px;
	margin-top: 16px;
}
.link-button {
    border: none;
    cursor: pointer;
    background-color: var(--button-bg);
    color: var(--button-color);
    border-radius: var(--button-radius);
    border: 1px solid #03C3F4;
    padding: 10px 25px;
	display: inline-block;
	margin: 5px;
}
.link-button:hover {
    background-color: var(--main-color);
    color: var(--button-color);
    transition: background-color 0.3s ease, color 0.3s ease;
    border: 1px solid white;
}

.ihe-card {
	flex: 0 0 calc(33.33% - 20px);
	border: 1px solid #e5e7eb;
	border-radius: 10px;
	padding: 15px;
	background: #fff;
}
.ihe-card img {
	max-height: 70px;
	margin-bottom: 8px;
	max-width: 120px;
}
.ihe-card p {
	margin: 0;
	font-size: 14px;
	color: #374151;
}
.text-center{
	text-align: center;
}

@media (max-width: 1024px) {
	/* .ihe-grid {
		grid-template-columns: repeat(3, 1fr);
	} */
}
@media (max-width: 768px) {
	/* .ihe-grid {
		grid-template-columns: repeat(2, 1fr);
	} */
	.ihe-card {
		flex: 0 0 calc(50% - 20px);
	}
}
@media (max-width: 480px) {
	.ihe-gpa-wrap {
		padding: 10px;
	}
	/* .ihe-grid {
		grid-template-columns: 1fr;
	} */
	.ihe-card {
		flex: auto;
		padding: 10px;
	}
	.ihe-field.btn {
		width: 100%;
		text-align: center;
	}
	.mobile-center{
		text-align:center;
	}
	.ihe-card img {
		max-height: 55px;
	}
	.link-button{
		padding: 8px 18px;
	}
	.ihe-table th, .ihe-table td {
		padding: 8px 8px;
	}
}