
/* Basic reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-color: #555;
	min-height: 1300px;
	/*
	border: 1px solid red;
	*/
}
table {/*{{{*/
	border-collapse: collapse;
	float:left;

}
table td {
    white-space:nowrap;
	border: 1px solid #888;
	padding: 4px;
}
table th {
    white-space:nowrap;
	color: white;
	background-color: #800;
	border: 1px solid #888;
	padding: 4px;
}
/*}}}*/

header {
    background-color: #800; /* Dark red background */
    padding: 10px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
	position: relative;
}

/* Main content area */
.main {
	color: white;
	min-height: 100%;
    padding: 10px 20px;
    display: flex;
    justify-content: left;
    position: relative;
    padding-left: 10px;
	z-index: 11;
}

/* Header content styles */
.header-content img {
    max-height: 80px; /* Adjust to fit the logo */
    max-width: 100%;
}

/* Navigation styles */
nav {
    display: flex;
    align-items: center;
}

/* Hamburger menu always visible */
.menu-icon {
    display: flex; /* Always visible */
    flex-direction: column;
    background-color: #555;
	width: 40px;
    cursor: pointer;
   margin-right: 10px;
}

.menu-icon div {
    width: 30px;
    height: 3px;
    background-color: #800;
    margin: 4px 0;
    transition: 0.3s;
}

/* Sidebar Menu (Hidden by default) */
.menu {
    list-style: none;
    flex-direction: column;
    position: fixed;
    left: 0;
    top: 0;
    background-color: #444;
    width: 190px;
	margin-top: 136px;
    padding-top: 10px;
    display: none; /* Hide menu by default */
	z-index: 20;
}

.menu li {
    margin: 10px 0;
}

.menu li a {
    color: white;
    text-decoration: none;
    padding: 10px;
    display: block;
}

/* When menu is toggled (add a 'show' class dynamically) */
.menu.show {
    display: flex; /* Show menu when toggled */
}


msg {
	display: block;
	z-index: 999;
	position:fixed;
	right:0px;
	bottom:0px;
    text-align:center;
	vertical-align: middle;
    width:500px;
	opacity: 0.9;
    background-color: #063;
    color: #fff;
    padding: 50px 10px;

}
cannot, fatal {
	display: block;
	z-index: 999;
	position:fixed;
	right:0px;
	bottom:0px;
    text-align:center;
	vertical-align: middle;
    width:500px;
	opacity: 0.9;
    background-color: #800;
    color: #fff;
    padding: 50px 10px;

}
