        body {
            margin: 0;
            font-family: Arial, sans-serif;
            background-color: rgb(235, 238, 241);
        }


        /* Header Bar */
        header {
            background-color: rgb(33, 37, 41);
            height: 56px;
            color: white;
            text-align: center;
            line-height: 56px;
            font-size: 20px;
            display: flex;
            justify-content: center;
            padding: 0 0px;
            width: 1440px;
            margin: 0 auto;
        }

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 1440px; /* Same width as main body */
    padding: 0 20px; /* Optional, for padding around links */
    box-sizing: border-box;
}

.header-content a {
    color: #b5b5b5;
    text-decoration: none;
    font-size: 18px; /* Adjust size as needed */
}

.header-content a:hover {
  color: #eeeeee;
}

.header-content span {
    font-size: 20px;
    text-align: center;
    flex-grow: 1; /* Ensures "Not A Historian" stays centered */
}

/*
@media (max-width: 768px) {
    .header-content {
        flex-direction: column; 
        align-items: center; 
        padding: 10px 0; 
    }

    .header-content a {
        margin: 5px 0; 
    }

    .header-content span {
        margin: 10px 0; 
    }
}
*/
        /* Main container */
        .main-container {
            width: 1440px;
            margin: 0 auto;
            background-color: white;
            margin-bottom: 50px;
        }

        /* Header area of the main container */
        .main-header {
            background-color: #ffffff;
            font-size: 24px;
            padding-top: 20px;
        }

        /* Search Bar */
        .search-bar {
            width: 100%;
            height: 51px;
            background-color: rgb(40, 160, 120);
            text-align: center;
            line-height: 40px;
            color: white;
            font-size: 16px;
            margin: 0; /* Remove any margin */
        }

        /* Layout with left and right sections */
        .layout {
            display: flex;
            justify-content: space-between;
            padding: 0; /* Remove padding between sections */
            margin: 0; /* Remove any margin */
            margin-bottom: 50px;
        }

        .left {
            width: 75%;
            background-color: #fff;
            padding: 20px;
            padding-top: 0px;
            padding-bottom: 50px;
            border-bottom-left-radius: 10px;
            border-bottom-right-radius: 10px;
        }

        .right {
            width: 25%;
            background-color: rgb(235, 238, 241);
            padding: 20px;
        }

.book-list {
    width: 100%;
}

.book-row {
    display: flex;
    align-items: center;
    height: 70px;
    background-color: white;
    border-bottom: 1px solid hsla(0, 0%, 49.8%, .2);
    padding: 10px 0;
}

.book-row-checked {
  background-color: #f3f7fa !important;
}

.book-empty
{
  color: #c5c5c5;
  width: 100%;
  font-size: 22px;
  text-align: center;
}

.book-index {
    width: 25px;
    margin-left: 25px;
    font-size: 16px;
    color: #888888;
}

.book-image {
    width: 40px;
    height: 60px;
    margin-left: 10px;
}

.book-info {
    flex-grow: 1;
    margin-left: 10px;
}

.book-title {
    font-weight: bold;
    font-size: 16px;
    font-weight: 500;
    color: #000000;
    font-family: CerebriSans, sans-serif;

    width: 750px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.book-details {
    font-size: 14px;
    color: gray;
    margin-top: 5px;
}

.book-rating {
    color: green;
    margin-left: 5px;
}

.book-amazon {
    margin-left: auto;
    margin-right: 30px;
    font-size: 18px;
}

.book-amazon i {
  color: #e5e5e5;
  font-size: 24px;
  cursor: pointer;
}

.book-amazon:hover i
{
  color: #ff9900 !important;
}

.book-favorite {
    margin-left: auto;
    margin-right: 30px;
    font-size: 18px;
}

.book-favorite i {
  color: #e5e5e5;
  font-size: 24px;
  cursor: pointer; 
} 

.book-favorite-checked i {
    color: #5670b2 !important;
}

.book-favorite:hover i
{
  color: #666666 !important;
} 

.book-checkbox {
    margin-left: auto;
    margin-right: 30px;
    font-size: 18px;
}

.book-checkbox i {
  color: #e5e5e5;
  font-size: 24px;
  cursor: pointer;
}

.book-checkbox-checked i {
  color: #28a745 !important;
}

.book-checkbox:hover i
{
  color: #666666 !important;
}


.book-year {
    color: #aaaaaa;
    font-weight: 400;
}

.book-author {
    color: #aaaaaa;
    font-weight: 400;
    margin-left: 5px;
}

.book-audible
{
  margin-left: 5px;
  color: #f05e23;
  opacity: 60%;
}

.book-audible i
{
  color: #f05e23;
}


.search-bar-container {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin-top: 8px; /* Matches margin above input */
}

.search-input {
    width: 450px;
    margin-left: 50px;
    margin-top: 8px;
    margin-bottom: 8px;
    background-color: white;
    border: 1px solid #d3d3d3; /* Light grey border */
    border-radius: 5px;
    padding: 10px;
    font-size: 16px;
    height: 14px;
}

.button-container {
    display: flex;
    gap: 15px; /* 15px spacing between buttons */
    margin-left: 15px;
}

.search-button {
    height: 22px;
    padding: 0 16px;
    background-color: #50ab8a; /* Default green */
    color: white;
    border: none;
    border-radius: 50px; /* To create the oval shape */
    font-size: 12px;
    font-weight: bold;
    cursor: pointer;
}

.search-button.active {
    background-color: #19694c; /* Specific color for 'All' button */
}

.progress {
    margin-left: auto; /* Align to the right */
    margin-right: 30px;
    text-align: right;
}

.progress-count {
    font-size: 16px;
}

.progress-percent {
    font-size: 20px; /* Slightly larger font for the percentage */
    font-weight: bold;
    padding-left: 10px;
}

.progress-num
{
  font-weight: 600;
  color: rgb(238, 238, 238 );
}

.progress-den
{
  font-weight: 400;
  color: rgb(204, 204, 204);
}







.list {
    margin-bottom: 20px;
}

.list-header {
    font-size: 15px;
    color: #202327;
    font-weight: bold;
    margin-bottom: 10px;
    padding-left: 4px;
}

ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

li {
    display: flex;
    justify-content: space-between;
    color: #282929;
    font-size: 16px;
    margin-bottom: 0px;
    padding: 4px;
    border-radius: 5px; /* Ensure the border radius is applied */
    /*transition: background-color 0.3s ease;*/ /* Smooth transition */
    cursor: pointer;
}

li:hover {
    background-color: #d8d8d8; /* Highlight color on hover */
}

.item-name {
    font-weight: normal;
    font-size: 14px;
}

.item-value {
    font-weight: 200;
    color: #7d7d7d;
    font-size: 14px;
}














/* BOOK  */


.book-page {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding-bottom: 50px;
    margin-left: 20px;
    margin-right: 20px;
}

.left-column {
    width: 25%;
    margin-top: 23px;
}

.book-page-image {
    width: 100%;
    height: auto;
}

.right-column {
    width: 50%;
    padding: 0 20px;
    padding-left: 50px;
}

.book-page-title {
    color: #333333;
    font-size: 24px;
    font-family: 'Helvetica Neue', sans-serif;
    font-weight: 600;
}

.book-page-author {
    color: #4a4a4a;
    font-size: 18px;
    font-family: 'Helvetica Neue', sans-serif;
    font-weight: 400;
}

.book-page-description {
    margin-top: 10px;
    font-size: 16px;
    line-height: 24px;
    color: #333333;
}

.book-page-episodes {
    margin-top: 20px;
    font-size: 14px;
    font-family: 'Helvetica Neue', sans-serif;
    font-weight: 400;
    color: #333333;
    border-top: 1px solid #333333;
    display: flex;
    flex-wrap: wrap; /* Allows items to wrap into the next row */
    gap: 20px;
}

.book-page-episodes span
{
  padding-top: 10px;
  font-size: 18px;
}


.book-page-meta {
    margin-top: 20px;
    font-size: 14px;
    font-family: 'Helvetica Neue', sans-serif;
    font-weight: 400;
    color: #333333;
    border-top: 1px solid #333333;
    display: flex;
    flex-wrap: wrap; /* Allows items to wrap into the next row */
    gap: 20px;
}

.meta-row {
    width: 48%; /* Sets each row to take up 48% of the width (2 columns) */
    box-sizing: border-box;
    margin-top: 20px;
}

.meta-row p {
    margin: 0 0 10px 0; /* Adds some space below each paragraph */
}

.purchase-column {
    width: 20%;
    padding-left: 20px;
}

.purchase-column h3 {
    font-size: 18px;
    font-weight: bold;
}

.purchase-column ul {
    list-style-type: none;
    padding: 0;
}

.purchase-column ul li {
    margin-bottom: 10px;
}

.purchase-column a {
    text-decoration: none;
    color: #007BFF;
    font-size: 16px;
}

.purchase-column a:hover {
    text-decoration: underline;
}












.book-view-checkbox
{
  width: 30px;
}

.book-view-checkbox i
{
  color: #e5e5e5;
  font-size: 16px;
  cursor: pointer;
} 

.book-view-checkbox-checked i
{
  color: #28a878 !important;
} 

.book-view-checkbox:hover i
{
  color: #666666 !important;
}



.book-view-favorite
{
  width: 30px;
}

.book-view-favorite i
{
  color: #e5e5e5;
  font-size: 16px;
  cursor: pointer;
} 

.book-view-favorite-checked i
{
  color: #5670b2 !important;
} 

.book-view-favorite:hover i
{
  color: #666666 !important;
} 

.book-view-navigation
{
  cursor: pointer;
}


/* Define the Account Properties */

.container {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 10px;
  max-width: 400px;
  margin-left: 50px;
  padding-bottom: 50px;
}

.row {
  display: contents;
}

.col
{
  line-height: 45px;
  width: 150px;
  text-align: right;
}

label {
  font-family: 'Helvetica Neue', sans-serif;
  font-weight: 600;
}

input, button {
  width: 100%;
  padding: 8px;
  margin-top: 5px;
}

button {
  cursor: pointer;
}

.account-input {
    width: 450px;
    margin-left: 50px;
    margin-top: 8px;
    margin-bottom: 8px;
    background-color: white;
    border: 1px solid #d3d3d3; /* Light grey border */
    border-radius: 5px;
    padding: 10px;
    font-size: 16px;
    height: 14px;
}  
