/*
Theme Name: Essentials Child
Theme URI: https://essentials.pixfort.com/
Author: PixFort
Template: essentials
Author URI: http://themeforest.net/user/pixfort
Description: Essentials child theme
Version: 1.0.2
License: Envato Marketplaces Split Licence
License URI: https://themeforest.net/licenses/standard
Text Domain: essentials-child
Tags: header-builder, footer-builder, divider-builder, popup-builder, premium-design, translation-ready

*/

/* ============================================================
   SINGLE BLOG POST - Heading Sizes
   Controls font sizes for headings only on single post pages
   ============================================================ */
.single-post h1 { font-size: 2.5rem; }
.single-post h2 { font-size: 2rem; }
.single-post h3 { font-size: 1.75rem; }
.single-post h4 { font-size: 1.5rem; }
.single-post h5 { font-size: 1.25rem; }
.single-post h6 { font-size: 1rem; }


/* ============================================================
   BETTERDOCS - Search Bar Positioning
   ⚠️ NOTE: Transform value has a typo — "translate(-50%,x -50%)"
   should be "translate(-50%, -50%)" — fix this if search bar
   appears misaligned
   ============================================================ */
.betterdocs-search-wrapper .betterdocs-search-details {
    top: 50% !important;
    transform: translate(-50%, -50%) !important; /* Fixed typo: removed stray "x" */
}



/* ============================================================
   PASSWORD PROTECTED PAGES - Form Styling
   ============================================================ */
/* Each sentence in the intro paragraph on its own line */
.post-password-form p {
  text-align: center;
}
/* Submit button - white text */
.post-password-form input[type="submit"] {
  color: 
#ffffff !important;
}
/* Password input - subtle shadow (matches Tailwind shadow-sm) */
.post-password-form input[type="password"] {
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05) !important;
}