body { 
    height: 100vh; 
    display: flex;
    flex-direction: column;
    font-family: 'Lexend', sans-serif;
}

body::after {
    content: "";
    background: url('/images/Astronomic background.png');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    opacity: 0.7;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    position: absolute;
    z-index: -1;   
}

#header-bar {
    width: 100%;
    min-height: 6vh;
    color: rgb(255, 255, 255);
    background-color: rgb(0, 22, 57);

    display: flex;
    align-items: stretch;
    justify-content: space-between;
    flex-wrap: nowrap;
}

#header-logo {
    padding: 8px;
}

#header-logo-image {
    width: 100%;
    vertical-align: middle;
}

#header-title {
    display: flex;
    justify-content: left;
    align-items: center;
    width: 100%;
    margin-left: 2%;
}

.nav-bar {
    list-style-type: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: nowrap;
    background-color: #d6dde3e0;
}

.nav-bar li {
}

.nav-bar li a {
    display: block;
    flex-wrap: nowrap;
    padding: 8px;
    text-decoration: none;
    color: #333;
    width: 160px;
    text-align: center;
    transition: background-color 0.3s ease;
}

.nav-bar li.active a {
    background-color: #0a78e6;
    color: #fff;
}

.nav-bar li:not(.active):hover a {
    background-color: rgba(170, 164, 164, 0.384);
    padding: 8px 16px;
}

.nav-bar-container {
    flex-grow: 1;
}

#content-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
}

#content-container {
    margin: 3%;
    padding: 20px;
    min-width: 75vw;
    min-height: 60vh;
}

#content-container > div.slds-card__body {
    margin-top: 20px;
}

#app-instance {
    white-space: nowrap; 
    text-align: center;
    display: inline-block; 
    margin-right: 32px;
    margin-top: 22px;
}

.slds-button-group {
    margin-right: 3rem;
}

.header-icon {
    filter: brightness(0) invert(1);
    width: 1.5rem; 
    height: 1.5rem;
}

.slds-card{
    width: 80%;
    max-height: 80vh;
    overflow-y: auto;
}

.fade-in {
    animation: fadeInAnimation 0.5s ease-in-out;
}

.results-metric-text {
    padding: 2px 6px;
    background-color: #f95e68;
    border-radius: 6px;
    color: #fff;
    font-size: 10px;
    border: 0px;
    animation: pulse-red 2.75s infinite;
}

@keyframes fadeInAnimation {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@keyframes pulse-red {
	0% {
		transform: scale(1);
		box-shadow: 0 0 0 0 #f95e68;
	}
	
	70% {
		transform: scale(1.05);
		box-shadow: 0 0 0 6px #f95e6800;
	}
	
	100% {
		transform: scale(1);
		box-shadow: 0 0 0 0 #f95e6800;
	}
}