/* SIDEBAR STYLES */

/* Aligns items center*/

#entry_sidebar {
    text-align: center;
}

/*backbutton styles*/

#content_back_button {
    background-color: lightpink;
    border: 5px solid orchid;
    padding: 10px;
}

#content_back_button a {
    color: blue;
}

#content_back_button a:hover {
    color: darkorchid;
}
 

/* Dropdown Button */

.dropbtn {
    background-color: darkorchid;
    color: white;
    padding: 16px;
    font-size: 16px;
    border: 3px solid orchid;
    box-shadow: inset 3px 3px 0px #fff;
}

/* The container <div> - needed to position the dropdown content */
.book_dropdown {
    position: relative;
    display: inline-block;
}

/* Dropdown Content (Hidden by Default) */
.dropdown-content {
    display: none;
    position: absolute;
    background-color: orchid;
    min-width: 160px;
    z-index: 1;
}

/* Links inside the dropdown */
.dropdown-content a {
    color: white;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
}

/* Change color of dropdown links on hover */
.dropdown-content a:hover {
    background-color: darkslateblue;
}

/* Show the dropdown menu on hover */
.book_dropdown:hover .dropdown-content {
    display: block;
}

/* Change the background color of the dropdown button when the dropdown content is shown */
.book_dropdown:hover .dropbtn {
    background-color: darkslateblue;
}
/* End Dropdown Button */
