.new-books-container
{
    font-family: Georgia, "Times New Roman", serif;
	font-weight: normal;
   	font-style: normal;
   	font-size: 10px;
    display: block;
}

.new-books-header
{
    font-family: Verdana, Arial, Helvetica, sans-serif;
	font-weight: bold;
	font-style: normal;
	font-size: 24px;
    text-align: center;
	display: flex;
    flex-direction: column;
	padding: 16px 0px 24px 0px;
}

.new-books-update-time
{
    font-family: Verdana, Arial, Helvetica, sans-serif;
	font-weight: normal;
	font-style: italic;
	font-size: 16px;
    text-align: center;
	padding: 6px 0px 0px 0px;
}

.new-books-update-time::before
{
	content: 'Last updated: ';
}

.new-books-categories
{
	display: flex;
	flex-direction: row;
	column-gap: 10px;
}

.book-column
{
	display: flex;
	flex-direction: column;
	row-gap: 12px;
	align-items: flex-start;
	width: 100%;
}

.book-table
{
	background: transparent;
    border-collapse: collapse;
    box-shadow: 0px 4px 8px 0px rgb(0 0 0 / 40%);
	width: 100%;
}

tr.book-header
{
    font-family: Verdana, Arial, Helvetica, sans-serif;
	font-weight: bold;
	font-style: normal;
	font-size: 18px;
    text-align: left;
    color: black;
}

tr.book-header td
{
    border-radius: 5px 5px 0 0;
}

tr.book-header td
{
    padding: 6px;
}

tr.column-header
{
    font-family: Verdana, Arial, Helvetica, sans-serif;
	font-weight: bold;
	font-style: normal;
	font-size: 15px;
    text-align: left;
    color: black;
}

.other tr.book-header { background: linear-gradient(to bottom, #ff6666, #ff9999); }
.other tr.column-header { background: #ff9999; }
.other tr:nth-child(2n+3) { background: #ffe6e6; }
.other tr:nth-child(2n+4) {	background: #ffcccc; }

.adult tr.book-header { background: linear-gradient(to bottom, burlywood, wheat); }
.adult tr.column-header { background: wheat; }
.adult tr:nth-child(2n+3) { background: blanchedalmond; }
.adult tr:nth-child(2n+4) {	background: cornsilk; }

.child tr.book-header { background: linear-gradient(to bottom, #3399ff, #66b3ff); }
.child tr.column-header { background: #66b3ff; }
.child tr:nth-child(2n+3) { background: #e6f2ff; }
.child tr:nth-child(2n+4) {	background: #cce6ff; }

.juvenile tr.book-header { background: linear-gradient(to bottom, #e68a00, #ffa31a); }
.juvenile tr.column-header { background: #ffa31a; }
.juvenile tr:nth-child(2n+3) { background: #ffebcc; }
.juvenile tr:nth-child(2n+4) {	background: #ffe0b3; }

tr.column-header td
{
    padding: 0px 0px 6px 6px;
}
td.author-td
{
	width: 40%;
	font-weight: normal;
   	font-style: normal;
   	font-size: 15px;
  	padding: 5px 0px 5px 6px;
}
td.title-td
{
	width: 60%;
	font-weight: normal;
  	font-style: normal;
   	font-size: 15px;
  	padding: 5px 5px 5px 6px;
}
