body {
	background-color: rgb(50,51,46)!important;
	margin-top: 5vh!important;
	margin-bottom: 5vh!important;
	overflow-y: hidden;
}

h2 {
	color: lightgrey;
}

.container {
	align-content: center;
}

.row {
	align-content: center; 
	text-align: center;
}

.input-row {
	display: inline-block;
	align-content: center; 
	text-align: center;
}

.mb-3 {
	display: inline-flex; 
	justify-content: center;
	align-content: center; 
	text-align: center;
}

#secret-text-field {
	max-width: 50vw; 
	padding: 10px;
	margin: 0 auto;
	vertical-align: top;
	box-sizing: border-box;
	font-size: 1.5vh;
}

#secret-password-field {
/*	width: 15vw!important; */
    min-width: 400px!important;
    max-width: 400px!important;
	margin: 0 auto;
	font-size: 1.5vh;
}

#response {
	color: white; 
}

.h2-custom-header {
	padding-top: 10vh;
	padding-bottom: 3vh;
	font-size: 4vh;
}

.form-control {
	margin-bottom: 20px!important;
}

.submit-button {
/*    width: 7vw;*/
    border-radius: 5px;
	font-size: 1.5vh;
}

@media (max-width: 1079px ) {
	#secret-password-field {
	/*	width: 15vw!important; */
	    min-width: 300px!important;
	    max-width: 300px!important;
		margin: 0 auto;
		font-size: 1.5vh;
	}
}

.navbar {
    max-height: 10vh!important;
}

/* Ensure the navbar-brand has flex alignment */
.navbar-brand {
    display: flex;
    align-items: center;
}

.navbar-image-container {
    width: 30px;
    height: 30px;
    display: flex; /* Center the image within the container */
    justify-content: center;
    align-items: center;
    margin-left: 1em; /* Adjust as needed */
    background-color: #f0f0f0; /* Optional placeholder color */
}

.navbar-image-container img {
    width: 100%;
    height: 100%;
    display: block;
}

#secret-file-field {
    max-width: 50vw;
    margin: 0 auto;
    font-size: 1.5vh;
}

.popup {
    display: none;
    position: fixed;
    top: 5vh;
    left: 50%;
    transform: translateX(-50%);
    padding: 1em 1.5em;
    border-radius: 10px;
    background: rgba(20, 20, 20, 0.92);
    color: #fff;
    font-size: 1.6vh;
    z-index: 9999;
    box-shadow: 0 0.5em 2em rgba(0, 0, 0, 0.6);
    transition: opacity 0.2s ease, transform 0.2s ease;
    opacity: 0;
}

.popup.show {
    display: block;
    opacity: 1;
}
