html,body {
	box-sizing: border-box;
	height : 100%;
	width:100%;
	padding:0;
	margin: 0;
	background-color:white;
}

:root {
	font-size: 16px; /* Base font size */
}
.page-body {
	display: flex;
	flex: 1;
	min-height: calc(100vh - 8vh);
	height:calc(100vh - 8vh);
	overflow: auto;
	width:100%;
	flex-direction: column;
	margin-bottom:8vh;
	margin-top:16vh;
}
 .page-footer
{
	 position: fixed;
	 left: 0;
	 width: 100%;
	 background-color: #eef4ff;
	 padding: 2vh;
	 height: 8vh;
	 bottom:0;
	 display: flex;
	 justify-content: center;
	 align-items: center;
	 text-align: center;
}
.custom-card
{
	--slds-c-card-shadow : 0 0px 0px 0 rgba(0, 0, 0, 0);
	--slds-c-card-color-border: transparent;
	width:100%;
	height:100%;
	align-items: center;
	justify-content: center;
	margin-bottom: 8vh;
}
.custom-card-header {
	background-color: #005fbf;
	color: white;
}
.brand-color
{
	color: #005fbf;
}
.custom-container
{
	display:flex;
	align-items: center;
}
.custom-button
{
	width: 15vw;
	height: 5vh;
	font-size: 1vw;
}
.slds-global-header__logo
{
	background-image: var(--logo-noname-url);
}
.custom-logo {
	width: 250px;
	height: auto;
}
.centered-card {
	display: flex;
	justify-content: center;
	align-items: center;
	flex:1;
	overflow-x: scroll;
	overflow-y: scroll;
}
.card-container
{
	top:50%;
	left:50%;
	transform: translate(-50%,-50%);
	width:50%;
	height:50%;
	position: absolute;
	padding-bottom: 10vh;
}
.custom-padding
{
	padding-top: 15vh;
	padding-bottom: 10vh;
}
.content-container
{
	display: flex;
	flex:1;
}
.brand-band-layout {
	background-size: cover;
	background-position: center;
	display: block;
	align-items: center;
	justify-content: center;
	margin-top: 10vh;
}
.brand-band
{
	background-image: var(--banner-url);
	width:100vw;
	background-repeat: repeat-x;
}
.slds-avatar img {
	border-radius: 50%;
	border: 2px solid #005fbf;
}
.slds-global-header {
	height: auto;
	padding: 10px 20px;
}
.slds-context-bar {
	align-items: center;
}
.slds-header-height
{
	max-height: 12vh;
	padding: 1vh;
}
.slds-card{
	max-width: 100%;
	box-sizing: border-box;
}
.slds-global-header__item.slds-grow {
	display: flex;
	justify-content: center;
}

.custom-label
{
	font-size: 0.9rem;
}
 .custom-table .slds-wrap {
	 white-space: normal;
	 word-wrap: break-word;
 }
 .custom-table
 {
	 font-size: 0.9rem;
 }
 .custom-table--detail > tbody > tr > td,
 .custom-table--detail > tr > td {
	 white-space: normal;
	 overflow-wrap: anywhere;
	 word-break: break-word;
	 max-width: 100%;
 }
 .custom-table--detail > tbody > tr > td:first-child,
 .custom-table--detail > tr > td:first-child {
	 white-space: nowrap;
	 width: 1%;
 }
 .custom-table--detail > tbody > tr > td input[type="text"],
 .custom-table--detail > tbody > tr > td input:not([type]),
 .custom-table--detail > tbody > tr > td textarea,
 .custom-table--detail > tr > td input[type="text"],
 .custom-table--detail > tr > td input:not([type]),
 .custom-table--detail > tr > td textarea {
	 max-width: 100%;
	 box-sizing: border-box;
 }
 .custom-table--detail > tbody > tr > td small,
 .custom-table--detail > tr > td small {
	 display: block;
	 white-space: normal;
	 overflow-wrap: anywhere;
 }
 .custom-table--detail details > summary {
	 white-space: normal;
	 overflow-wrap: anywhere;
 }
 .strict-client-auth-matrix details > summary {
	 list-style: none;
 }
 .strict-client-auth-matrix details > summary::-webkit-details-marker {
	 display: none;
 }
 .strict-client-auth-matrix__summary {
	 cursor: pointer;
	 display: flex;
	 align-items: flex-start;
	 gap: 0.75rem;
	 width: 100%;
	 min-height: auto;
	 height: auto;
	 padding: 0.75rem 1rem;
	 text-align: left;
	 white-space: normal;
 }
 .strict-client-auth-matrix__summary-text {
	 flex: 1 1 auto;
	 white-space: normal;
	 overflow-wrap: anywhere;
	 font-size: 0.8125rem;
	 font-weight: 700;
 }
 .strict-client-auth-matrix__chevron {
	 display: inline-block;
	 flex: 0 0 auto;
	 font-size: 2rem;
	 line-height: 1;
	 transition: transform 0.15s ease;
 }
 .strict-client-auth-matrix table {
	 table-layout: fixed;
	 width: 100%;
 }
 .strict-client-auth-matrix table td,
 .strict-client-auth-matrix table th {
	 white-space: normal;
	 overflow-wrap: anywhere;
	 word-break: break-word;
 }
 .strict-client-auth-matrix details[open] > summary .strict-client-auth-matrix__chevron {
	 transform: rotate(90deg);
 }

/* Adjustments for small screens (phones) */
@media (max-width: 600px) and (max-height: 1000px){
	.custom-button {
		width: 80vw;
		height: auto;
		padding: 1.5vh;
		font-size: 4vw;
	}
	.custom-logo {
		width: 150px;
	}
	.slds-header-height
	{
		max-height: 17vh;
	}
	:root {
		font-size: 12px;
	}
}

/* Adjustments for medium screens (tablets) */
@media (min-width: 601px) and (max-width: 900px) {
	.custom-button {
		width: 50vw;
		height: auto;
		padding: 1.5vh;
		font-size: 3vw;
	}
	.custom-logo {
		width: 200px;
	}
	.brand-band-layout {
		height: 30vh;
		background-size: cover;
		background-position-x: left;
	}
	.brand-band
	{
		margin-top:15vh;
	}
	.slds-header-height {
		max-height: 15vh;
	}
	:root {
		font-size: 14px;
	}
	.custom-padding {
		padding-top: 15vh;
		padding-bottom: 8vh;
	}
}

/* Adjustments for large screens (small laptops) */
@media (min-width: 901px) and (max-width: 1200px) {
	.custom-button {
		width: 30vw;
		height: 5vh;
		font-size: 2vw;
	}
	.custom-logo {
		width: 220px;
	}
	.brand-band-layout {
		height: 20vh;
		background-size: cover;
	}
	.slds-header-height
	{
		max-height: 13vh;
	}
	:root {
		font-size: 16px;
	}
	.custom-padding {
		padding-top: 16vh;
		padding-bottom: 10vh;
	}
}

/* Adjustments for extra large screens (desktops) */
@media (min-width: 1201px) {
	.custom-button {
		width: 15vw;
		height: 5vh;
		font-size: 1vw;
	}
	.custom-logo {
		width: 250px;
	}
	.brand-band-layout {
		height: 20vh;
		background-size: cover;
	}
	.slds-header-height
	{
		max-height: 12vh;
	}
	:root {
		font-size: 18px;
	}
}

/* Adjustments for extra small screens (smallest size window) */
@media (max-width: 320px) {
	.custom-button {
		width: 90vw;
		height: auto;
		padding: 1.5vh;
		font-size: 5vw;
	}
	.custom-logo {
		width: 100px;
	}
	.brand-band-layout {
		height: 20vh;
		background-size: cover;
		background-position-x: left;
	}
	.slds-header-height {
		max-height: 18vh;
	}
	:root {
		font-size: 10px;
	}
	.custom-padding {
		padding-top: 20vh;
		padding-bottom: 9vh;
	}
}

@media (min-width: 150px) and (max-width: 650px) {
	.custom-padding {
		padding-top: 25vh;
		padding-bottom: 15vh;
	}
}
