/* General Body Styles */
body {
    font-family: 'Veranda'	, sans-serif;
    line-height: 1.6;
    margin: 20px;
    color: #333;
}
	.content-area {
		max-width: 800px; /* Limit content width for better reading */
		margin: 0 auto;
		background-color: #fff;
		padding: 20px;
		box-shadow: 0 0 10px rgba(0,0,0,0.1);
	}
	/* Styles for Floating Images */
	.float-right {
		float: right; /* Pushes the image to the right */
		margin-left: 20px; /* Space between image and text to its left */
		margin-bottom: 10px; /* Space below image if text flows under */
		border: 1px solid #ddd; /* Optional: adds a border */
		padding: 5px; /* Optional: adds padding inside the border */
		background-color: #f9f9f9; /* Optional: light background */
	}

	.float-left {
		float: left; /* Pushes the image to the left */
		margin-right: 20px; /* Space between image and text to its right */
		margin-bottom: 10px; /* Space below image if text flows under */
		border: 1px solid #ddd;
		padding: 5px;
		background-color: #f9f9f9;
	}

	/* Footer to demonstrate clearing */
	.footer-area {
		margin-top: 40px; /* Provide space after the content area */
		text-align: center;
		padding-top: 20px;
		border-top: 1px dashed #ccc;
		color: #666;
	}


/* Page Container */
.page-container {
    max-width: 800px; /* Max width for comfortable reading */
    margin: 40px auto; /* Center the page with some top/bottom margin */
    padding: 40px;
    background-color: #fff; /* White background for the page content */
    border-radius: 8px; /* Slightly rounded corners */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1); /* Subtle shadow for depth */
    flex-grow: 1; /* Allow container to grow and push footer down */
}

/* Heading for the book and page number */
h1 {
    font-family: 'Palatino Linotype', 'Book Antiqua', Palatino, serif; /* Elegant heading font */
    font-size: 2.8em;
    color: #000000; /* Dark blue-gray */
    text-align: center;
    margin-bottom: 25px;
    border-bottom: 1px solid #eee; /* Subtle separator */
    padding-bottom: 15px;
}

h2 {
    font-size: 2.0em;
    color: #000000; /* Slightly lighter blue-gray  #34495e;  */
    text-align: center;
    margin-bottom: 30px;
}

/* Paragraph styles */
p {
    margin-bottom: 1.2em; /* Space between paragraphs */
    text-indent: 0; /* Indent first line of paragraphs for a book feel */
    font-size: 1.3em;
}

/* Unordered list */
ul {
    margin-bottom: 1.2em; /* Space between paragraphs */
    text-indent: 0; /* Indent first line of paragraphs for a book feel */
    font-size: 1.3em;
}

/* Ordered list */
ol {
    margin-bottom: 1.2em; /* Space between paragraphs */
    text-indent: 0; /* Indent first line of paragraphs for a book feel */
    font-size: 1.0em;
}

/* Table DAta */
t {
    margin-bottom: 1.2em; /* Space between paragraphs */
    text-indent: 0; /* Indent first line of paragraphs for a book feel */
    font-size: 1.0em;
}


/* Navigation */
.navigation {
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #eee; /* Separator for navigation */
}

.navigation a {
    background-color: #007bff; /* Blue button */
    color: white;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease;
    min-width: 120px; /* Ensure buttons have consistent width */
    text-align: center;
}

.navigation a:hover {
    background-color: #0056b3; /* Darker blue on hover */
}

.navigation a.disabled {
    background-color: #cccccc; /* Gray for disabled buttons */
    cursor: not-allowed;
    pointer-events: none; /* Make it truly unclickable */
}

/* Footer */
footer {
    text-align: center;
    padding: 20px;
    margin-top: 40px; /* Space above footer */
    background-color: #e2e2e2; /* Light gray footer */
    color: #666;
    font-size: 0.9em;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .page-container {
        margin: 20px auto;
        padding: 20px;
        box-shadow: none; /* Remove shadow on small screens */
    }
    h1 {
		color: #0056b3;
		text-align: center;
		margin-bottom: 30px;
		}
    h2 {
        font-size: 1.5em;
    }
    .navigation {
        flex-direction: column; /* Stack buttons vertically */
        align-items: center;
    }
    .navigation a {
        margin-bottom: 10px;
        width: 80%; /* Make buttons wider */
    }
	
}