/* styles.css */
/* Global styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
	
}

/* Header styles */
.header {
    background-color: #3498db;
    color: #fff;
    text-align: center;
    padding: 20px;
}

.header-content {
    display: flex;
    flex-direction: row; /* Display the image and text side by side */
    align-items: center;
    justify-content: center; /* Center the content horizontally */
}

.header-text {
    padding: 20px;
    text-align: left;
}

.header img {
    width: 150px;
    height: auto;
    border-radius: 50%;
    margin-bottom: 10px;
}

.header-title {
    font-size: 36px;
}

/* Main content styles */
.main-content {
    padding: 20px;
}

.main-title {
    font-size: 20px;
}

.chapter-list {
    list-style-type: none;
    padding: 0;
}

.chapter-item {
    display: flex; /* Use flexbox layout for the chapter items */
    align-items: center; /* Vertically align the content */
    margin: 20px 0;
}
.image-and-summary {
    display: flex; /* Use flexbox layout to position image and summary horizontally */
    align-items: center; /* Vertically align the content */
}

.pdf-preview {
    width: 800px;
    height: auto;
    display: block;
    margin-right: 20px; /* Add some spacing between image and summary */
}

.chapter-name {
    display: block;
    margin-top: 10px;
    font-weight: bold;
    text-align: center;
}

.chapter-summary {
    background-color: #f4f4f4;
    padding: 10px;
    border-radius: 5px;
    text-align: left;
    width: 300px; /* Adjust the width of the summary box */
}

.chapter-summary h3 {
    font-size: 18px;
}

.chapter-summary p {
    font-size: 14px;
}

/* Set the background image */
body {
    background-image: url('Freeimage.jpg'); /* Replace 'your-background-image.jpg' with the path to your background image */
    background-size: cover; /* Cover the entire viewport */
    background-repeat: no-repeat; /* Prevent image repetition */
    background-attachment: fixed; /* Fix the background image in place */
}