
/* Hide profile_avatar field. It may be edited by the user, but it does not look nice in the account ui. */
.pf-v5-c-form__label[for="profile_avatar"] {
	visibility: hidden;
	height: 0;
}
#profile_avatar {
	visibility: hidden;
	height: 0;
}
/* :has() is a new feature, the above visibility: hidden are still needed for older browsers */
.pf-v5-c-form__group:has(#profile_avatar) {
	display: none;
}

.pf-v5-c-form>.pf-l-grid .pf-v5-c-page__main-section {
	padding: 0;
}

.pf-v5-l-grid__item > section {
	margin-top: 0 !important;
}

/* Remove section links, which are unnecessary for our small forms */
.pf-v5-c-jump-links {
	display: none;
}

.pf-v5-c-page__header, .pf-v5-c-toolbar, .pf-v5-c-masthead {
	background-color: #0D4653;
	min-height: 56px;
}

.pf-v5-c-brand {
	max-height: 24px !important;
}

.pf-v5-c-page__sidebar {
	background-color: #003642;
}

.pf-v5-c-nav__link.pf-m-current {
	background-color: #127C94;
}

/* Left bar on current item */
.pf-v5-c-nav__link.pf-m-current::after, .pf-v5-c-nav__link.pf-m-current:hover::after {
	border-color: #00D4D4;
}
/* Left bar on hover in sub-items */
.pf-v5-c-nav__link:hover::after {
	border-color: transparent;
}

/* Dividers*/
.pf-v5-c-nav__link::before {
	border-color: transparent;
}

.pf-v5-c-nav__link:hover, .pf-v5-c-nav__link.pf-m-current:hover, .pf-v5-c-nav__link:focus {
	background-color: #00677D;
}

.pf-v5-c-nav__item.pf-m-expandable::before {
	border-bottom: 0;
}
