@charset "utf-8";
body {
	font-family: sans-serif; /* Georgia, Times, "Times New Roman", serif; */
	font-size: 16px;
	line-height: 1.4;
	margin: 10px;
	padding: 5px;
	background-color: #e2e6e7;
	color: #222220;
	box-sizing: border-box;
}

table {
  border-spacing: 0;
  table-layout: auto;
}

table, th, td {
  border: 1px solid #777777;
  border-collapse: collapse;
}

th, td {
  padding: 2px 5px 2px 5px;
  text-align: left;
  width: 0.1%;
  white-space: normal;
}

ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}

label {
	white-space: nowrap;
	padding: 0.5em 0 0 0;
}

h4{
  display: block;
  font-size: 1em;
  margin-top: 0.5em;
  margin-bottom: 0.8em;
  margin-left: 0;
  margin-right: 0;
  font-weight: bold;
}
pre {
	font-family: sans-serif; /* Georgia, Times, "Times New Roman", serif; */
	display: inline;
}

input[type="checkbox"], input[type="radio"] {
    cursor: pointer;
    margin-top: 5px;
    padding-left: 10px;
}

a {
  outline: none;
  text-decoration: none;
  padding: 2px 1px 0;
}

a:link {
  color: #003436;
}

a:visited {
  color: #017b7e;
}

a:hover {
  border-bottom: 1px solid;
  margin-bottom: -1px;
  background: #96ebe0;
}

a:active {
  background: #003436;
  color: #96ebe0;
}

a:focus {
  border-bottom: 1px solid;
  margin-bottom: -1px;
  background: #fed8ce;
}

blockquote::before {
  content: open-quote;
  color: #5DA3AA;
  font-size: 4em;
  line-height: 0.1em;
  margin-right: 0.25em;
  vertical-align: -0.4em;
}
blockquote::after {
    content: close-quote;
    color: #5DA3AA;
    font-size: 4em;
    line-height: 0.1em;
    margin-left: 0.25em;
    vertical-align: -0.6em;
}
blockquote {
    quotes: "“" "”" "‘" "’";
    border-left: 10px solid #5DA3AA;
    margin: 1.5em 10px;
    padding: 0.5em 10px;
}

#main {
    padding-top: 35px;
}

#greeting-container {
	background-color: #fed8ce;
	padding: 2px 5px;
}

#header-container{
    width: 100%;
    position: fixed;
    background: #c7cac1;
    padding: 0;
    top: 0;
}

#id_review{
    width: 100%;
}

.center-container {
    width: 80%;
    margin: 0 auto; /* Center the DIV horizontally */
}
.random_container{
	border: solid 2px #c7cac1;
	padding: 2px;
	margin: 5px 0px;
}

.authors-list-wrapper{
  padding: 2px;
  margin: 20px 2px;
}

.book_wrapper {
	border: solid 2px #c7cac1;
	padding: 2px;
	margin: 5px 0px;
}

.pagination a {
  display: inline-block;
}

.pagination a {
  color: #777777;
  float: left;
  padding: 8px 16px;
  text-decoration: none;
  border: 1px solid #777777;
  border-radius: 3px;
  margin: 20px 2px;
}

.pagination a.active {
  background-color: #5DA3AA;
  border: solid 1px #5DA3AA;
  color: white;
}

.pagination a:hover:not(.active) {
	background-color: #ddd;
}

/* Style the tab */
.tab {
  overflow: hidden;
  border-bottom: 2px solid #c7cac1;
}

/* Style the buttons that are used to open the tab content */
.tab button {
  color: #777777;
  float: left;
  border: 1px solid #777777;
  cursor: pointer;
  padding: 14px 16px;
  transition: 0.3s;
}

/* Change background color of buttons on hover */
.tab button:hover {
  background-color: #96ebe0;
}

/* Create an active/current tablink class */
.tab button.active {
  color: #FFFFFF;
  background-color: #5DA3AA;
  border: 1px solid #5DA3AA;
}

/* Style the tab content */
.tabcontent {
  display: none;
  padding: 6px 12px;
  border: 2px solid #c7cac1;
  border-top: none;
}

.autocomplete-suggestions {
	color: #fff;
    background-color: #5DA3AA;
    box-shadow: 0 2px 2px 0 rgba(0,0,0,0.14), 0 1px 5px 0 rgba(0,0,0,0.12), 0 3px 1px -2px rgba(0,0,0,0.2);
    max-height: 650px;
    min-width: 100px;
    overflow-y: auto;
    will-change: width, height;
    z-index: 999;

    .autocomplete-suggestion,
    .autocomplete-no-suggestion {
        clear: both;
        cursor: pointer;
        display: block;
        min-height: 30px;
        padding: 5px 10px;
        text-align: left;
        text-transform: none;
        width: 100%;

        &.autocomplete-selected {
            color: #5DA3AA;
            background-color: #eee;
        }
    }
}

.taggit-labels.taggit-list {
  background-color: transparent;
}
.taggit-labels.taggit-list .taggit-tag {
  display: inline-block;
  margin: 0 10px 10px 0px;
  padding: 5px 10px;
  border: 1px solid #777777;
  border-radius: 3px;
  background-color: transparent;
  color: #777777;
  cursor: pointer;
}
.taggit-labels.taggit-list .taggit-tag:first-child {
  margin-left: 0;
}
.taggit-labels.taggit-list .taggit-tag:hover {
  background-color: transparent;
  color: #79AEC8;
  border-color: #79AEC8;
}
.taggit-labels.taggit-list .taggit-tag.selected {
  background-color: #5DA3AA;
  color: #FFFFFF;
  border-color: #5DA3AA;
}
.taggit-labels.taggit-list .taggit-tag.selected:hover {
  background-color: #017b7e;
  color: #FFFFFF;
  border-color: #017b7e;
}
.smalltext {
	font-size: 13px;
}
.error_label {
    color: #FF0000;
}
.edit_link {
    margin: 10px 0;
    float: right;
    position: relative;
}

.edit_link[disabled="true"] {
  color: #777777;
}
