/* Logo styles */
.logo {
    width: 80px; /* Adjust width as needed */
    height: auto;
    /* position: absolute; */
    top: 50%;
    /* transform: translateY(-50%); */
}

.logo-left {
    left: 20px; /* Adjust left spacing as needed */
}

.logo-right {
    right: 20px; /* Adjust right spacing as needed */
}

/* body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
} */

body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
background-image: url('./assets/background.png'); /* Replace with the correct path to your background image */
background-color: #f4f4f4;
display: flex;
flex-direction: column;
min-height: 100vh;
background-size: cover; /* Add this line to stretch the background image */
}

header {
    /* background-image: url('./assets/header_background.png'); 
    
    z-index: 5;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center; */
    background-color: #044176;
    font-weight: bold;
    color: #ffffff;
    padding: 1em;
    text-align: center;
    position: relative;
}

nav {
    background-color: #444;
    overflow: hidden;
}

nav a {
    float: left;
    display: block;
    color: white;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
}

nav a:hover {
    background-color: #ddd;
    color: black;
}

.body_class {
    flex: 1;
    max-width: 800px;
    margin: 20px auto;
    padding: 20px;
    background-color: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

table, th, td {
    border: 1px solid #ddd;
}

th, td {
    padding: 12px;
    text-align: left;
}

th {
    background-color: #f2f2f2;
}

footer {
    background-color: #044176;
    padding: 0em; /* Adjust as needed */
    text-align: center;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f5f5f5;
    margin: 0;
}

.tabs {
    overflow: hidden;
    background-color: #333;
}

.tablink {
    background-color: #444;
    float: left;
    border: none;
    outline: none;
    cursor: pointer;
    padding: 10px 15px;
    font-size: 16px;
    color: white;
    transition: background-color 0.3s;
}

.tablink:hover {
    background-color: #555;
}

.tablink.active {
    background-color: #000000;
}

.tabcontent {
    display: none;
    padding: 20px;
    color: #333;
}

/* Style the content of each tab */
.tabcontent {
    border: 1px solid #555;
    border-top: none;
    background-color: #fff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

h2 {
    color: #000000;
}

p {
    line-height: 1.6;
}

/* Optional: Add a subtle box shadow to the tabs for depth */
.tabs {
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
