body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    margin: 0;
    font-family: Arial, sans-serif;
}

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%; /* Full width */
    height: 60px; /* Height of the navbar */
    background-color: #333;
    color: #fff;
    display: flex;
    align-items: center;
    padding: 0 20px; /* Add padding for spacing */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

.navbar h1 {
    font-size: 20px;
    color: #ff6347;
    font-weight: bold;
    margin-right: auto; /* Align logo/text to the left */
}

.navbar ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex; /* Arrange items in a row */
    align-items: center;
    flex-grow: 1; /* Push items to take available space */
    justify-content: flex-end; /* Align items to the right */
}

.navbar ul li {
    margin: 0 15px; /* Add spacing between items */
}

.navbar ul li a {
    text-decoration: none;
    color: #fff;
    font-size: 16px;
    padding: 10px 15px;
    display: flex;
    align-items: center;
    transition: background-color 0.3s ease;
    border-radius: 4px; /* Rounded edges for hover effect */
}

.navbar ul li a:hover {
    background-color: #ff6347;
}

.navbar ul li img {
    width: 20px; /* Adjust the size of the image */
    height: 20px; /* Adjust the size of the image */
    margin-right: 8px; /* Spacing between image and text */
    vertical-align: middle;
}

.main-content {
    margin-top: 70px; /* Leave space for the navbar */
    padding: 20px;
    background-color: #f9f9f9;
    box-sizing: border-box;
}

.logo img {
    width: 50px;
    height: auto;
    border-radius: 50%;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

footer {
    background-color: #333;
    color: #fff;
    text-align: center;
    padding: 10px 0;
    position: relative;
    bottom: 0;
    width: 100%;
}
