/* Set the background color and font-family for the entire page */
body {
    /*background-color: #f7f7f7;*/
    background-image: url("/images/bg/moroccan-flower.png");
    font-family: 'Merriweather', serif;
}

/* Style the header section */
.header {
    background-color: #fff;
    height: 80px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
    box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.1);
}


/* Style the logo */
.logo {
    font-size: 2.5rem;
    font-weight: bold;
}

/* Style the navigation bar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
    background-color: #0099ff;
    height: 60px;
}

/* Style the navigation bar links */
.navbar a {
    color: #fff;
    text-decoration: none;
    padding: 20px;
}

/* Style the main content */
.main-content {
    display: flex;
    flex-direction: column;
    padding: 20px;
}

/* Style the sidebar */
.sidebar {
    background-color: #fff;
    width: 250px;
    padding: 20px;
}

/* Style the footer */
.footer {
    background-color: #333;
    color: #fff;
    padding: 20px;
    text-align: center;
}

