/* CSS Document */
/* =============================================
   RFLEXM, LLC - Full Layout CSS
   ============================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    height: 100%;
    font-family: "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, "Helvetica Neue", sans-serif;
    background-color: #f8f9fa;
}

/* Top Bar */

.top-bar {
    background-color: #0066CC; /* Deep blue */
    color: white;
    height: 45px; /* Approximately 10mm */
    display: flex;
    align-items: center;
    padding: 0 20px;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
}

.top-bar h1 {
    margin: 0;
    font-size: 23px;
	font-weight:400;
}


/* Sidebar */
.sidebar {
    background-color: #003366;
    color: white;
    width: 280px;
    height: calc(100vh - 60px);
    position: fixed;
    left: 0;
    top: 45px;
    overflow-y: auto;
    padding: 20px 0;
	text-align: center;
}

.sidebar a,
.sidebar .menu-item {
    display: block;
    padding: 12px 20px;
    color: white;
    text-decoration: none;
    font-size: 15px;
}

.sidebar a:hover,
.sidebar .menu-item:hover {
    background-color: #004C99;
}

/* Main Content Area */
.content {margin-top: 45px;
    margin-left: 280px;
    padding: 30px;
    min-height: calc(100vh - 60px);
    background-color: #F4F4F4;
}

		.content h1 {
    margin: 0;
    font-size: 20px;
	font-weight:300;
		}
			.content h2 {
    margin: 0;
    font-size: 25px;
	font-weight:400;
		}

/* Responsive */
@media (max-width: 992px) {
    .sidebar {
        width: 100%;
        height: auto;
        position: relative;
    }
    .content {
        margin-left: 0;
    }
}
