<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/*
 Theme Name:   Bricks Child Theme
 Theme URI:    https://bricksbuilder.io/
 Description:  Use this child theme to extend Bricks.
 Author:       Bricks
 Author URI:   https://bricksbuilder.io/
 Template:     bricks
 Version:      1.1
 Text Domain:  bricks
*/
.single-encyclopedia {
    margin: 0 auto; /* Center the container */
    padding: 20px; /* Optional: Add padding around the container */
}

.content-wrapper {
    max-width: 800px; /* Set maximum width for the boxed layout */
    margin: 0 auto; /* Center the content */
    background-color: #ffffff; /* Background color for the box */
    border: 1px solid #d9d9d9; /* Optional: Border around the box */
    border-radius: 10px; /* Optional: Rounded corners */
    padding: 20px; /* Inner padding for the content */
}

/* Optional: Style for the header and footer */
.entry-header, .entry-footer {
    margin-bottom: 20px; /* Space below header and footer */
}

}
ul.related-items {
  margin: 0px;
}
li.item {
  border: 1px solid #ddf;
  margin-bottom: 10px;
  display: inline-block;
  width: 18%;
  margin-right: 1%;
  padding: 5px;
  text-align: center;
  border-radius: 10px;
}
li.item a {
	display: block;
}
@media screen and (max-width: 990px) {
	li.item {
	  width: 23.5%;
	  margin-right: 1%;
	}
}
@media screen and (max-width: 768px) {
	li.item {
	  width: 31.5%;
	  margin-right: 1%;
	}
}
@media screen and (max-width: 640px) {
	li.item {
	  width: 48%;
	  margin-right: 1%;
	}
}
.search-form-container {
    margin: 20px 0; /* Space around the search form */
    display: flex; /* Aligns items in a row */
    justify-content: center; /* Centers the search form */
}

.encyclopedia.search-form {
    display: flex; /* Flexbox for form layout */
}

.search-field {
    padding: 10px; /* Padding inside the input field */
    border: 1px solid #d9d9d9; /* Border color */
    border-radius: 5px; /* Rounded corners for the input */
    width: 300px; /* Set width for the search field */
    font-size: 16px; /* Font size */
    margin-right: 10px; /* Space between input and button */
}

.search-submit {
    background-color: #007bff; /* Button background color */
    color: white; /* Text color */
    padding: 10px 15px; /* Padding inside the button */
    border: none; /* Remove default border */
    border-radius: 5px; /* Rounded corners for the button */
    cursor: pointer; /* Pointer cursor on hover */
    font-size: 16px; /* Font size */
    transition: background-color 0.3s; /* Transition effect */
}

.search-submit:hover {
    background-color: #0056b3; /* Darker blue on hover */
}

.boxpad{
	margin:50px;
}</pre></body></html>