/* Basic Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #121212;
    color: #fff;
    font-family: Arial, sans-serif;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    min-height: 100vh;
}

.banner {
    width: 100%;
    /* min-height: 750px; */
    background-color: #1c1c1c;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.logo-container {
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo {
    max-height: 100px;
    margin-right: 20px;
}

.banner h1 {
    color: #d3d3d3;
    font-size: 2.5rem;
}

.container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    width: 100%;
    padding: 20px;
}

.highlight {
   color: #FF0000;
}

.yellow {
   color: #FFFF00;
}

.green {
   color: #00FF00;
}

.bullet-highlights {
   color: #00cc99;
}

    .text-area {
            width: 45%;
            min-width: 200px;
            min-height: calc(1.5em * 15 + 20px); /* 15 lines of text + padding */
            padding: 10px;
            border: 2px solid #888888;
            border-radius: 10px;
            background-color: #2a2a2a;
            color: #fff;
            resize: none;
            margin: 0 auto; /* Center the div */
        }
        .text-area h2 {
            text-align: center; /* Center the heading */
        }
        .text-area ul {
            list-style-type: none;
            padding-left: 0;
        }
        .text-area ul li {
            margin-bottom: 10px;
        }
        .text-area ul li a {
            color: #00aaff;
            text-decoration: none;
        }
        .text-area ul li a:hover {
            text-decoration: underline;
        }
	.highlight {
   	    color: #FF0000;
        }



.book-container {
    display: flex;
    align-items: flex-start;
    width: 93%;
    padding: 10px;
    border: 2px solid #888888;
    border-radius: 10px;
    background-color: #2a2a2a;
    color: #fff;
    margin-bottom: 10px;
    margin: 0 auto; /* Center the div */
    box-sizing: border-box; /* Ensure padding and border are included in the element's total width and height */
}
.book-cover {
    flex: 0 0 auto;
    width: 80px;
    height: 120px;
    margin-right: 20px;
}
.book-details {
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
}
.book-title {
    font-size: 1.2em;
    margin: 0;
    white-space: normal; /* Allow text to wrap */
    overflow: hidden;
    text-overflow: ellipsis;
}
.book-description {
    font-size: 1em;
    color: #FFF;
    margin-top: 5px;
    white-space: normal; /* Allow text to wrap */
    overflow: hidden;
    text-overflow: ellipsis;
}

.booktitle {
    text-decoration: none;
    color: #3399ff;
}


/* Responsive Design */
@media (max-width: 768px) {
    .text-area {
        width: 100%;
    }
}

/*.highlight {
color:red;
}  */
