body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
}

header {
    background-color: #4285f4;
    color: #fff;
    padding: 10px;
    text-align: right;
    display: flex;
    justify-content: space-between; /* Distribute items along the main axis (horizontally) */
    align-items: center;

}

h2 {
    text-align: center;
}

nav ul {
    list-style: none;
    padding: 0;
    display: flex;
    justify-content: right;
    margin-top: 20px;
}

nav li {
    margin: 0 15px;
}

nav a {
    text-decoration: none;
    color: #333;
    font-weight: bold;
}
.admin-sidebar{
    background-color: #4285f4 ;
    height: 500px;
    width: 150px;
}

.admin-section {
    margin-top: 30px;
    text-align: left;
}
.admin-section:hover{
    background: #a0a0a058;
}

.admin-section h3 {
    color: #fff;
}