/* Style the links inside the sidenav */
#mySidenav a {
    position: absolute; /* Position them relative to the browser window */
    left: -170px; /* Position them outside of the screen */
    transition: 0.3s; /* Add transition on hover */
    padding: 12px; /* 15px padding */
    width: 220px; /* Set a specific width */
    text-decoration: none; /* Remove underline */
    font-size: 20px; /* Increase font size */
    border-radius: 0 5px 5px 0; /* Rounded corners on the top right and bottom right side */
    margin: 5px 0;
}

#mySidenav a:hover {
    left: 0; /* On mouse-over, make the elements appear as they should */
}

#blog {
    top: 10px;
    background-color: white; /* Blue */
    color: #2196F3;
    border: 2px solid #2196F3
}

#blog:hover{
    background-color: #2196F3;
    color: white;
}

#Validation {
    top: 80px;
    background-color: white; /* Blue */
    color: mediumpurple;
    border: 2px solid mediumpurple
}

#Validation:hover{
    background-color: mediumpurple;
    color: white;
}

/* The about link: 20px from the top with a green background */
#about {
    top: 150px;
    background-color: white;
    color: #f44336;
    border: 2px solid #f44336
}

#about:hover {
    background-color: #f44336;
    color: white;
}

#projects {
    top: 220px;
    background-color: white;
    color: #04AA6D;
    border: 2px solid #04AA6D
}

#projects:hover {
    background-color: #04AA6D;
    color: white;
}

#users {
    top: 290px;
    background-color: white;
    color: #FFAB40;
    border: 2px solid #FFAB40
}

#users:hover {
    background-color: #FFAB40;
    color: white;
}

#stats {
    top: 360px;
    background-color: white;
    color: #795548;
    border: 2px solid #795548
}

#stats:hover {
    background-color: #795548;
    color: white;
}

#notif {
    top: 430px;
    background-color: white;
    color: #546E7A;
    border: 2px solid #546E7A;
}

#notif:hover {
    background-color: #546E7A;
    color: white;
}

#contact {
    top: 220px;
    background-color: #555 /* Light Black */
}

.iconSidebar{
    font-size: 1.5em;
    vertical-align: middle;
    float: right;
}