/* ProfileInfo Component Styles */

/* Syncfusion Grid Cell Override - removes padding for percentage fill column */
.e-rowcell.no-padding-cell {
	padding: 0 !important;
}

/* Percentage Fill Styles */
.percent-fill {
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 30px;
}

/* 100% complete - solid fill */
.percent-fill-complete {
	background: #6c757d;
	color: white;
}

/* < 100% - gradient fill (percentage set via inline style) */
.percent-fill-partial {
	color: #212529;
}

/* Card Type Icon Styles */
.cardtype-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
}

.cardtype-icon .material-symbols-outlined {
	font-size: 1.5rem;
}

.cardtype-icon-code {
	color: #4BA870; /* Green - matches foo-success */
}

.cardtype-icon-primarykey {
	color: var(--foo-blue2); /* foo-blue2 */
}

.cardtype-icon-data {
	color: #6c757d; /* Bootstrap secondary gray */
}

.cardtype-icon-null {
	color: #adb5bd; /* Light gray */
}

/* Combined Profile Layout */
.profile-combined-layout {
	display: flex;
	gap: 1rem;
	align-items: stretch;
}

.profile-info-section {
	flex-shrink: 0;
	display: flex;
	align-items: stretch;
}

.profile-texture-section {
	flex-grow: 1;
	min-width: 0;
	display: flex;
}

/* Responsive: stack vertically on smaller screens */
@media (max-width: 992px) {
	.profile-combined-layout {
		flex-direction: column;
		align-items: stretch;
	}

	.profile-info-section {
		justify-content: center;
	}

	.profile-texture-section {
		width: 100%;
	}
}
