/* Reset some default styles */
body, h1, img {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Center the logo and title */
.header {
    display: flex;
    align-items: center;
    background-color: #f4f4f4;
}

.header-left {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 10px 20px;
    box-sizing: border-box;
}

.logo {
    max-width: 100px; /* Adjust size as needed */
    height: auto;
    margin-right: 20px;
}

.title {
    font-size: 1.5rem;
    margin: 0;
}

.header-center {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    flex: 1;
    text-align: center;
}

.page-title {
    font-size: 1.8rem;
    margin: 0;
}

/* Menu Bar styles */
.menu-bar {
    display: flex;
    justify-content: center;
    background-color: #333;
}

.menu-link {
    color: #fff;
    padding: 14px 20px;
    text-decoration: none;
    font-size: 1rem;
    display: block;
    text-align: center;
}

.menu-link:hover {
    background-color: #575757;
}



/* Flex container styles */
.flex-container {
    display: flex;
    flex-wrap: wrap;
    margin: 14px 20px;
    padding: 5px 5px;
    justify-content: center;
    align-items: flex-start;
    min-height: 100vh;
    gap: 10px;
    background-color: whitesmoke;
}

.box {
    flex: 1 1 200px; /* Adjust the basis value as needed */
    background-color: #ddd;
    border: 1px solid #ccc;
    padding: 20px;
    text-align: center;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

/* Breadcrumb styles */
.breadcrumb {
	padding: 10px;
	background-color: #f4f4f4;
	border-bottom: 1px solid #ddd;
	font-size: 0.9rem;
}

.breadcrumb a {
	text-decoration: none;
	color: #007BFF;
}

.breadcrumb a:hover {
	text-decoration: underline;
}

.breadcrumb span {
	color: #555;
}


