/* Target single event page (assuming a specific class) */
.single-event {
  display: flex;  /* Enable flexbox for layout */
}

.single-event {
  flex-direction: column;  /* Arrange content vertically */
}

/* Hide the sidebar element (adjust selector if needed) */
.sidebar {
  display: none; border: none;
}

/* Expand the main content area to fill the remaining space */
.site-content,
#primary {  /* Adjust selector based on your theme's structure */
  width: 100%;
}

/* Target single post page (assuming a specific class) */
.single .entry-header,
.single-post .entry-header {  /* Adjust selector if needed */
  /* Optional styles for the entry header (padding, margin, etc.) */
}

/* Hide meta data elements within the entry header */
.single-post .entry-header {
  display: none;
}

.single-post .meta {
  display: none;
}

.content-area {
		border-right: none
}


/* password page formatting*/
.post-password-form {
		padding: 100px;
		max-width: 800px;
		margin: auto;
		
}

body .theme-button, body input[type="submit"], body button[type="submit"], body button, body .button, body div.wpforms-container-full .wpforms-form input[type=submit], body div.wpforms-container-full .wpforms-form button[type=submit], body div.wpforms-container-full .wpforms-form .wpforms-page-button {
    margin-top: 30px;
}