/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Mar 29 2026 | 23:07:16 */
/* The Filebird gallery plugin renders a <ul> with <li> items styled as a CSS grid. The theme's .entry-content styles apply generic list margins to all <li> elements including gallery items, which misaligns the grid and right-shifts images within each cell. These rules correct that and center the gallery at 80% of the content area width. Shrink gallery to 80% of the content area width and center it */
ul.filebird-block-filebird-gallery {
	width: 80% !important;
	margin-left: auto !important;
	margin-right: auto !important;
}
/* Override the theme's generic .entry-content li margins which apply to all list items on the page, including gallery cells. Left margin pushes images out of alignment; bottom margin creates unwanted gaps in the grid. */
.entry-content ul.filebird-block-filebird-gallery li {
	margin-left: 0 !important;
	margin-bottom: 0 !important;
}
