@font-face {
	font-family: 'Roboto';
	src: url(../fonts/Roboto-Regular.ttf);
}

html {
	height: 100%;
	position: relative;
	width: 100%;
}

body {
	font-family: Roboto, "Helvetica Neue", sans-serif;
	position: relative;
	height: 100%;
	margin: 0;
	padding: 0;
	width: 100%;
    
    --primary: #00394D;
    --primary-border: #065974;
    --primary-hover: #004b66;
}

header {
	background-color: var(--primary);
	height: 60px;
}

.header {
	position: fixed;
	display: flex;
	left: 260px;
	align-items: center;
	height: 60px;
	background-color: var(--primary);
}

.logo {
	position: absolute;
	margin-left: 20px;
	margin-right: 40px;
	width: 200px;
	height: 60px;
	background-size: 200px 60px;
	background-image: url(../img/fsmlogo.png);
	background-color: var(--primary);
}

.headline {
	flex: 1;
	font-size: 22px;
	padding: 5px 10px;
	color: white;
	margin: 0;
	font-family: 'Roboto';
	font-weight: bold;
	align-content: center;
}

.roundedCorners {
	border-radius: 5px;
	background: #00384d1f;
	padding: 15px;
	width: fit-content;
	block-size: fit-content
}

.table {
	width: fit-content;
	block-size: fit-content;
	border-collapse: collapse;
	border: 1px solid #ccc;
	border-right: none;
	border-left: none;
	margin-top: 3%;
	margin-bottom: 3%;
}

.submit {
	color: white;
	background-color: var(--primary);
	font-family: 'Roboto';
	text-align: center;
	text-decoration: solid;
	display: inline-block;
	border-radius: 5px;
	border: none;
	padding: 5px;
	padding-right: 30px;
	padding-left: 30px;
	font-weight: bold;
}

a {
	text-decoration: none;
	color: inherit;
}

	a:hover {
		text-decoration: underline;
	}

.container {
	padding: 20px;
	position: fixed;
	top: 60px;
}

.footer {
	padding-left: 20px;
	position: fixed;
	bottom: 60px;
}

.imageButton {
    height: 50px;
    width: 150px;
    padding: 0;
	position: absolute;
	left: 250px;
	
    display: flex;
    align-items: center;
    justify-content: flex-start;
    
    border-radius: 8px;
    border: 2px solid var(--primary-border);
    background-color: var(--primary);
    color: white;
    
    font-family: system-ui;
    font-size: 1.1em;
}

.imageButton:hover {
    background-color: var(--primary-hover);
}

.imageButton>span {
    padding: 4px 8px;
}

.imageButton>img {
	width: 48px;
    height: 48px;
    padding: 8px;
	margin-right: 8px;
    
    border-right: 2px solid var(--primary-border);
}
