/* Listing page */

.map-container {
	border-radius: 12px;
	background-color: var(--edirt-off-white);
	overflow: hidden;
	position: relative;
}

.map-size-button {
	position: absolute;
	top: 8px;
	right: 8px;
	width: 40px !important;
	height: 40px !important;
	z-index: 10;
	padding: 10px !important;
	display: none; /* Hidden for now */
}

.map-edit-button {
	position: absolute;
	top: 8px;
	right: 8px;
	z-index: 10;
}

.map-container .coordinates {
	position: absolute;
	left: 0;
	bottom: 0;
	z-index: 10;
	background-color: #000000;
	opacity: 0.8;
	border-top-right-radius: 4px;
}

.map-container .coordinates span {
	color: var(--edirt-white);
	padding-left: 12px;
	padding-right: 12px;
	font-size: 12px;
}

#map {
	width: 100%;
	height: calc(100dvh - 210px);
}

#small-map {
	width: 100%;
	aspect-ratio: 310 / 170;
}

.summary-location #small-map {
	width: 100%;
	aspect-ratio: 520 / 170;
}

#mini-card-holder {
	position: absolute;
	bottom: 16px;
	left: 16px;
	right: 16px;
}

@media screen and (max-width: 800px) {
	#map {
		height: calc(100dvh - 270px);
	}
}

@media screen and (max-width: 767px) {
	#map {
		margin-top: 16px;
		height: 144px;
	}
}

/* Status cards */

.status-cards {
	display: grid;
	gap: 4px;
	grid-template-columns: repeat(4, 1fr);
}

.status-card {
	display: flex;
	flex-direction: column;
	background-color: var(--edirt-white);
	padding: 6px;
	border-radius: 8px;
}

.status-card.inprogress,
.status-card.submitted,
.status-card.approved,
.status-card.rejected {
	cursor: pointer;
}

/* In Progress */
.status-card.inprogress .status-count,
.soil-profile.inprogress .status-name {
	color: var(--edirt-info-blue);
}

.status-card.inprogress .status-bar,
.soil-profile.inprogress .status-bar {
	background: var(--edirt-info-blue);
}

/* In Progress - Selected */
.status-card.inprogress.selected
{
	background: var(--edirt-info-blue);
}

.status-card.inprogress.selected .status-count,
.status-card.inprogress.selected .status-name {
	color: var(--edirt-white);
}

.status-card.inprogress.selected .status-bar
{
	background: var(--edirt-blue-3);
}

/* Submitted */
.status-card.submitted .status-count,
.soil-profile.submitted .status-name {
	color: var(--edirt-yellow-1);
}

.status-card.submitted .status-bar,
.soil-profile.submitted .status-bar {
	background-color: var(--edirt-yellow-2);
}

/* Submitted - Selected */
.status-card.submitted.selected
{
	background-color: var(--edirt-yellow-2);
}

.status-card.submitted.selected .status-count,
.status-card.submitted.selected .status-name {
	color: var(--edirt-grey-1);
}

.status-card.submitted.selected .status-bar
{
	background: var(--edirt-yellow-3);
}

/* Approved */
.status-card.approved .status-count,
.soil-profile.approved .status-name {
	color: var(--edirt-success-green);
}

.status-card.approved .status-bar,
.soil-profile.approved .status-bar {
	background-color: var(--edirt-success-green);
}

/* Approved - Selected */
.status-card.approved.selected
{
	background-color: var(--edirt-success-green);
}

.status-card.approved.selected .status-count,
.status-card.approved.selected .status-name {
	color: var(--edirt-white);
}

.status-card.approved.selected .status-bar
{
	background: var(--edirt-green-3);
}

/* Rejected */
.status-card.rejected .status-count,
.soil-profile.rejected .status-name {
	color: var(--edirt-error-red);
}

.status-card.rejected .status-bar,
.soil-profile.rejected .status-bar {
	background-color: var(--edirt-error-red);
}

/* Rejected - Selected */
.status-card.rejected.selected
{
	background-color: var(--edirt-error-red);
}

.status-card.rejected.selected .status-count,
.status-card.rejected.selected .status-name {
	color: var(--edirt-white);
}

.status-card.rejected.selected .status-bar
{
	background: var(--edirt-red-3);
}

.status-count {
	color: var(--edirt-grey-3);
	font-size: 22px;
	line-height: 30px;
}

.status-name {
	color: var(--edirt-grey-1);
	font-size: 10px;
	line-height: 16px;
}

.status-bar {
	height: 4px;
	width: 100%;
	background-color: var(--edirt-grey-3);
	border-radius: 6px;
	margin-top: 8px;
}

.status-bar.vertical {
	height: auto;
	width: 4px;
	margin-right: 12px;
	margin-top: 0;
}

/* List */

.soil-profile-container {
	background-color: var(--edirt-white);
	border: 1px solid var(--edirt-grey-4);
	border-radius: 8px;
	overflow: hidden;
}

.soil-profile {
	padding: 12px;
	border-bottom: 1px solid var(--edirt-grey-4);
	width: 100%;
	cursor: pointer;
}

.soil-profile:hover {
	background-color: var(--edirt-slightly-off-white);
}

.soil-profile-container .soil-profile-inner-container:last-child .soil-profile {
	border-bottom: none;
}

.soil-profile .status-name {
	font-weight: 400;
	font-size: 10px;
	line-height: 16px;
}

.badge {
	padding-left: 10px;
	padding-right: 10px;
	border-radius: 12px;
	background-color: var(--edirt-grey-1);
	color: var(--edirt-white);
}

.badge.inprogress {
	background-color: var(--edirt-blue-1);
}

.badge.submitted {
	background-color: var(--edirt-yellow-2);
	color: var(--edirt-grey-1);
}

.badge.approved {
	background-color: var(--edirt-success-green);
}

.badge.rejected {
	background-color: var(--edirt-error-red);
}

/* List - survey selector */

.survey-selector select {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	font-weight: 700;
	font-size: 12px;
	line-height: 18px;
	color: var(--edirt-blue-1);
	background-image: url('data:image/svg+xml;utf8,<svg width="11" height="6" viewBox="0 0 11 6" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M0.75 0.75L5.25 5.25L9.75 0.75" stroke="%23002664" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/></svg>');
	background-repeat: no-repeat;
	background-position: right 5px center;
	background-size: 11px 6px;
	background-color: transparent;
	border: none;
	cursor: pointer;
	padding-left: 0;
}

.survey-selector select:focus {
	outline: none;
}

/* Overview */

.overview-page-inprogress .main-white-card {
	box-shadow: 0 -14px 0 0 var(--edirt-info-blue);
	margin-top: 14px;
}

.overview-page-submitted .main-white-card {
	box-shadow: 0 -14px 0 0 var(--edirt-yellow-2);
	margin-top: 14px;
}

.overview-page-approved .main-white-card {
	box-shadow: 0 -14px 0 0 var(--edirt-success-green);
	margin-top: 14px;
}

.overview-page-rejected .main-white-card {
	box-shadow: 0 -14px 0 0 var(--edirt-error-red);
	margin-top: 14px;
}

.overview-content {
}

.overview-top {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 16px 24px 0;
}

.overview-top-left {
	display: flex;
	justify-content: start;
	align-items: center;
	gap: 16px;
}

.overview-status-label {
	padding: 1px 8px;
	border-radius: 16px;
	font-size: 12px;
}

.overview-page-inprogress .overview-status-label {
	border: 1px solid var(--edirt-info-blue);
	color: var(--edirt-info-blue);
	background: var(--edirt-info-blue-bg);
}

.overview-page-submitted .overview-status-label {
	border: 1px solid var(--edirt-yellow-2);
	color: var(--edirt-yellow-1);
	background: var(--edirt-yellow-4);
}

.overview-page-approved .overview-status-label {
	border: 1px solid var(--edirt-success-green);
	color: var(--edirt-success-green);
	background: var(--edirt-success-green-bg);
}

.overview-page-rejected .overview-status-label {
	border: 1px solid var(--edirt-error-red);
	color: var(--edirt-error-red);
	background: var(--edirt-error-red-bg);
}

.overview-top-right {
	display: flex;
	justify-content: end;
	align-items: center;
	gap: 16px;
}

.overview-summary {
	padding: 24px 24px;
}

.overview-summary-items {
	display: flex;
	justify-content: start;
	align-items: center;
	gap: 16px;
}

.overview-summary-item {
	flex-basis: calc(25% - 12px);
	display: flex;
	justify-content: start;
	align-items: center;
	gap: 8px;
}

.overview-add-sample-button {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 8px;
	border: 2px solid var(--edirt-blue-1);
	border-radius: 4px;
}

.overview-items-empty {
	padding: 24px;
	display: flex;
	justify-content: center;
	align-items: center;
	background-color: var(--edirt-off-white);
	border: 1px solid var(--edirt-grey-4);
	border-radius: 8px;
	font-size: 12px;
}

/* Overview - Columns */

.overview-columns {
	padding: 24px;
	display: flex;
	align-items: start;
	justify-content: start;
	gap: 24px;
}

.overview-site-layers-samples {
	flex-basis: calc(66.6% - 12px);
}

.overview-site-layers {
	display: flex;
	align-items: start;
	justify-content: start;
	gap: 24px;
}

.overview-site {
	flex-basis: calc(50% - 12px);
}

.overview-layers {
	flex-basis: calc(50% - 12px);
}


.overview-map-images {
	flex-basis: calc(33.3% - 12px);
}

/* Overview - samples */

.overview-samples-list {
	border: 1px solid var(--edirt-grey-4);
	border-radius: 8px;
}

.overview-sample {
	padding: 10px 16px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	color: var(--edirt-grey-1);
	font-weight: 400;
	border-bottom: 1px solid var(--edirt-grey-4);
}

.overview-sample:last-child {
	border-bottom: none;
}

.overview-sample-title {
	color: var(--edirt-blue-1);
	font-weight: 600;
}

.overview-sample-right {
	display: flex;
	justify-content: flex-end;
	align-items: center;
	gap: 24px;
}

.overview-sample-depth {
	display: flex;
	align-items: center;
	gap: 8px;
}

/* Layers page */

.layers-page-top {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 16px 24px 0;
}

.layers-page-columns {
	padding: 24px;
	display: flex;
	align-items: start;
	justify-content: start;
	gap: 24px;
}

.layers-page-layers {
	flex-basis: calc(33.3% - 12px);
}

.layers-page-sections {
	flex-basis: calc(66.6% - 12px);
}

/* Depth editor */

.depth-selection {
	display: flex;
	align-items: center;
	gap: 16px;
}

.depth-container {
	display: flex;
	flex-basis: 50%;
	flex-grow: 1;
	justify-content: space-between;
	align-items: center;
	background-color: var(--edirt-blue-2);
	padding: 6px 14px;
	border-radius: 8px;
	cursor: pointer;
}

.depth-container .depth-type {
	font-size: 12px;
	color: var(--edirt-white);
}

.depth-container .depth-value {
	font-size: 14px;
	font-weight: 700;
	color: var(--edirt-white);
}

.depth-container.disabled {
	background-color: var(--edirt-grey-2);
	cursor: auto;
}

/* Sections list */

.sections-list {
	border: 1px solid var(--edirt-grey-4);
	border-radius: 8px;
}

.sections-list-item {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 10px 16px;
	border-top: 1px solid var(--edirt-grey-4);
	gap: 10px;
}

.sections-list-item.sections-list-item-has-values {
	background: var(--edirt-success-green-bg);
}

.sections-list-item:first-child {
	border-top: none;
}

.sections-list-label {
	flex-grow: 1;
}

.sections-list-tick {
	width: 24px;
	height: 24px;
	background-image: url('../img/widget-empty.svg');
	background-repeat: no-repeat;
	background-position: center;
}

.sections-list-item-has-values .sections-list-tick {
	background-image: url('../img/widget-ticked.svg');
}

/* Layers summary box */

.layers-box {
	border: 1px solid var(--edirt-grey-4);
	border-radius: 8px;
	overflow: hidden;
}

.layers-box-layer {
	padding: 11px 16px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	border-bottom: 1px solid var(--edirt-grey-4);
	gap: 10px;
}

.layers-box-layer-current {
	background-color: var(--edirt-blue-1);
}

.layers-box-layer-current .layers-box-layer-label {
	color: var(--edirt-white);
}

.layers-box-layer-current .layers-box-layer-depths {
	color: var(--edirt-grey-3);
}

.layers-box-layer:last-child {
	border-bottom: none;
}

.layers-box-layer.layers-box-disabled,
.layers-box-layer.layers-box-add {
	justify-content: start;
}

.layers-box-surface {
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 2px 16px;
	background: var(--edirt-off-white);
	border: 1px solid var(--edirt-grey-4);
	border-radius: 8px;
}

.layers-box-surface.layers-box-layer-current {
	background-color: var(--edirt-blue-1);
	color: var(--edirt-white);
}

.layers-box-add {
	cursor: pointer;
}

/* Add layers modal */

.layers-modal {
	display: flex;
	flex-direction: column;
	align-items: stretch;
}

.layers-modal-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 16px 24px;
	border-bottom: 1px solid var(--edirt-grey-4);
}

.layers-modal-close {
	cursor: pointer;
}

.layers-modal-body {
	flex-grow: 1;
	position: relative;
	padding: 0 24px;
	overflow: hidden;
	cursor: grab;
}

.layers-modal-depth-scroller {
	position: relative;
	left: 0;
	top: -305px;
	width: 100%;
	height: auto;
}

.layers-modal-markers {
	z-index: 30;
	position: absolute;
	top: 0;
	left: 0;
}

.layers-modal-10-marker {
	position: relative;
	width: 29px;
	height: 1px;
	margin-bottom: 3px;
	background-color: var(--edirt-grey-2);
}

.layers-modal-10-marker-label {
	position: absolute;
	left: 36px;
	top: -11px;
	font-size: 12px;
}

.layers-modal-1-marker {
	width: 17px;
	height: 1px;
	margin-bottom: 3px;
	background-color: var(--edirt-grey-3);
}

.layers-modal-surface {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 537px;
	background-color: var(--edirt-red-4);
	border-bottom: 2px solid var(--edirt-red-3);
	z-index: 25;
}

.layers-modal-surface-label {
	position: absolute;
	left: 84px;
	bottom: 3px;
	font-size: 12px;
	color: var(--edirt-error-red);
	z-index: 27;
}

.layers-modal-depth-indicator {
	position: absolute;
	top: 230px;
	left: 24px;
	width: calc(100% - 48px);
	height: 2px;
	background-color: var(--edirt-blue-2);
	z-index: 40;
}

.layers-modal-depth-indicator-value {
	position: absolute;
	top: -18px;
	left: 50%;
	color: var(--edirt-white);
	font-size: 18px;
	font-weight: 600;
	background-color: var(--edirt-blue-2);
	border-radius: 8px;
	translate: -50% 0;
	height: 36px;
	padding: 0 12px;
	display: flex;
	justify-content: center;
	align-items: center;
}

.layers-modal-existing-layer {
	position: absolute;
	width: 100%;
	left: 0;
	background: var(--edirt-grey-4);
	border-bottom: 1px solid var(--edirt-grey-3);
	z-index: 26;
}

.layers-modal-existing-layer-organic
{
	background: #A8EDB355;
	border-bottom: none;
	border-top: 1px solid var(--edirt-green-3);
}

.layers-modal-existing-layer div {
	position: absolute;
	top: 4px;
	right: 12px;
	font-size: 12px;
}

.layers-modal-footer {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 14px 24px 24px;
	border-top: 1px solid var(--edirt-grey-4);
	gap: 16px;
}

.layers-modal-footer .page-button {
	flex-grow: 1;
	flex-basis: calc(50% - 8px);
}

/* Sample page */

.sample-page-top {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 16px 24px 0;
}

.sample-page-top-right {
	display: flex;
	justify-content: flex-end;
	align-items: center;
	gap: 8px;
}

.sample-page-header {
	padding: 24px;
}

.sample-page-stats {
	display: flex;
	justify-content: flex-start;
	gap: 8px;
}

.sample-page-stat {
	flex-basis: calc(33% - 6px);
}

.sample-page-stat-value {
	display: flex;
	justify-content: flex-start;
	align-items: center;
	gap: 8px;
	margin-top: 12px;
	font-size: 18px;
	font-weight: 600;
	color: var(--edirt-grey-1);
}

.sample-page-results {
	padding: 24px;
}

/* Sample page - lab results table */

.sample-page-lab-results {
	margin-top: 12px;
}

.lab-results-table {
	width: 100%;
	border-spacing: 0;
	border-collapse: separate;
}

.lab-results-table thead td {
	font-weight: 600;
	padding-bottom: 4px;
}

.lab-results-table tbody td {
	padding: 12px 0 12px 8px;
	border-bottom: 1px solid var(--edirt-grey-4);
	cursor: pointer;
}

.lab-results-table tbody tr:first-child td {
	border-top: 1px solid var(--edirt-grey-4);
}

.lab-results-table tbody td:first-child {
	border-left: 1px solid var(--edirt-grey-4);
	padding-left: 16px;
}

.lab-results-table tbody td:last-child {
	border-right: 1px solid var(--edirt-grey-4);
}

.lab-results-table tbody tr:first-child td:first-child {
	border-top-left-radius: 8px;
}

.lab-results-table tbody tr:first-child td:last-child {
	border-top-right-radius: 8px;
}

.lab-results-table tbody tr:last-child td:first-child {
	border-bottom-left-radius: 8px;
}

.lab-results-table tbody tr:last-child td:last-child {
	border-bottom-right-radius: 8px;
}

.lab-results-table tbody td.lab-results-test-name {
	width: 90%;
}

.lab-results-table tbody td.lab-results-delete-cell {
	padding-left: 16px;
	padding-right: 16px;
}

.lab-results-table tbody td.lab-results-delete-cell .icon {
	min-width: 20px;
}

/* Sample page - lab results form */

.test-search-result {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding-right: 8px !important;
}

.test-search-result .test-search-result-name {
	color: var(--edirt-blue-1);
}

.test-search-result .test-search-result-code {
	color: var(--edirt-grey-1);
}

.laboratory-test-selected {
	border: 2px solid var(--edirt-blue-2);
	padding: 12px 6px 12px 18px;
	border-radius: 8px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 6px;
}

.laboratory-test-selected .icon {
	min-width: 20px;
}

.laboratory-test-selected .laboratory-test-selected-info {
	flex-grow: 1;
	padding-left: 6px;
}

.laboratory-test-selected .laboratory-test-selected-name {
	color: var(--edirt-grey-1);
	font-weight: 600;
}

.laboratory-test-selected .laboratory-test-selected-code {
	margin-top: 2px;
	color: var(--edirt-grey-2);
	font-size: 12px;
}

.laboratory-test-selected .laboratory-test-selected-remove {
	padding: 6px;
	cursor: pointer;
}

/* Profile core - Survey */

.big-button {
	background-color: transparent;
	border-radius: 8px;
	border: 2px solid var(--edirt-blue-1);
	color: var(--edirt-grey-2);
	width: 100%;
	cursor: pointer;
	padding: 28px;
	text-align: center;
}

.survey-search-result {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding-right: 8px !important;
}

/* Profile core - Template */

.profile-template-change-warning {
	background-color: var(--edirt-warning-orange-bg);
	border-radius: 8px;
	padding: 16px;
}

.profile-templates-list {
	display: flex;
	flex-direction: column;
	gap: 8px;
	align-items: stretch;
}

.profile-template {
	padding: 12px 18px;
	cursor: pointer;
	display: flex;
	gap: 18px;
	justify-content: start;
	align-items: center;
	border: 2px solid var(--edirt-grey-4);
	border-radius: 8px;
}

.profile-template-name {
	font-weight: bold;
	font-size: 16px;
}

.profile-template-subtitle {
	font-size: 12px;
	color: var(--edirt-grey-2);
}

.profile-template.selected {
	border-color: var(--edirt-blue-2);
}

/* Profile core - Summary */

.summary-header {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 12px;
}

.summary-info {
	padding: 0 20px;
	display: flex;
	justify-content: space-between;
	gap: 20px;
}

.summary-info-label {
	flex-basis: calc(50% - 10px);
	display: flex;
	justify-content: start;
	align-items: center;
	gap: 8px;
}

.summary-edit-buttons {
	display: flex;
	justify-content: space-between;
	gap: 12px;
}

/* Profile core - Location */

#location-map {
	width: 100%;
	height: 420px;
	border-radius: 8px;
}

.map-pin {
	height: 28px;
	position: relative;
	display: inline-block;
	filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.2));
}

.map-pin.white .map-pin-dot-inner {
	border: 1px solid var(--edirt-white);
}

.map-pin.white .map-pin-number {
	color: var(--edirt-grey-1);
}

.map-pin.white .map-pin-top {
	background: var(--edirt-white);
}

.map-pin-inprogress .map-pin-dot {
	background-color: var(--edirt-blue-4);
}

.map-pin-inprogress .map-pin-dot-inner {
	background-color: var(--edirt-info-blue);
}

.map-pin-submitted .map-pin-dot {
	background-color: var(--edirt-yellow-4);
}

.map-pin-submitted .map-pin-dot-inner {
	background-color: var(--edirt-yellow-2);
}

.map-pin-approved .map-pin-dot {
	background-color: var(--edirt-green-4);
}

.map-pin-approved .map-pin-dot-inner {
	background-color: var(--edirt-success-green);
}

.map-pin-rejected .map-pin-dot {
	background-color: var(--edirt-red-4);
}

.map-pin-rejected .map-pin-dot-inner {
	background-color: var(--edirt-error-red);
}

.map-pin-top {
	background: var(--edirt-grey-1);
	height: 22px;
	border-radius: 22px;
	padding: 0 3px 0 3px;
	display: flex;
	align-items: center;
	gap: 6px;
}

.map-pin-dot {
	height: 15px;
	width: 15px;
	border-radius: 16px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.map-pin-dot-inner {
	height: 9px;
	width: 9px;
	border-radius: 8px;
	border: 1px solid var(--edirt-grey-1);
}

.map-pin-number {
	color: var(--edirt-white);
	font-weight: 700;
	font-size: 14px;
	margin-right: 6px;
}

.map-pin-point {
	width: 7.8px;
	height: 7.8px;
	position: absolute;
	background: var(--edirt-grey-1);
	bottom: 2.0px;
	left: calc(50% - 3.9px);
	rotate: 45deg;
}

.location-type {
	border: 2px solid var(--edirt-blue-2);
	padding: 12px;
	border-radius: 8px;
	cursor: pointer;
}

.location-type-display {
	display: flex;
	justify-content: center;
	align-items: center;
}

.location-type-display-item {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: start;
	gap: 8px;
	flex-grow: 1;
	border-right: 1px solid var(--edirt-grey-4);
}

.location-type-display-item:last-child {
	border-right: none;
}

/* Review page */

.review-field {
	display: flex;
	justify-content: start;
	gap: 12px;
	align-items: start;
}

.review-field-label {
	flex-basis: calc(40% - 6px);
	font-weight: 500;
}

.review-field-value {
	flex-basis: calc(60% - 6px);
	font-weight: 400;
}

/* Common elements */

.soil-profile-number {
	display: flex;
	align-items: center;
	padding: 8px 14px;
	border-radius: 20px;
	font-size: 20px;
	font-weight: bold;
	color: var(--edirt-white);
	background-color: var(--edirt-info-blue);
}

.overview-page-inprogress .soil-profile-number {
	background-color: var(--edirt-info-blue);
}

.overview-page-submitted .soil-profile-number {
	background-color: var(--edirt-yellow-2);
	color: var(--edirt-grey-1);
}

.overview-page-approved .soil-profile-number {
	background-color: var(--edirt-success-green);
}

.overview-page-rejected .soil-profile-number {
	background-color: var(--edirt-error-red);
}