/*
Theme Name: Inspiro Child
Theme URI: https://www.wpzoom.com/themes/inspiro
Template: inspiro
Description: This is a simple Child Theme.
Author: WPZOOM
Author URI: https://www.wpzoom.com
Version: 1.0
*/

/* Write your custom CSS code below or add it in the Customizer > Additional CSS */

/* Make the close button visible */
/* Ensure the button is on top */
.gclose {
  position: fixed !important;
  top: 20px !important;
  right: 20px !important;
  z-index: 9999 !important;
  width: 40px !important;
  height: 40px !important;
  background: rgba(0,0,0,0.5) !important;  /* dark circle */
  border-radius: 50% !important;
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  cursor: pointer !important;
}

/* Make the SVG path white */
.gclose svg path {
  fill: white !important;  /* force it visible */
}

/* Optional hover effect */
.gclose:hover {
  background: rgba(0,0,0,0.7) !important;
}

/* Force proper multi-line indentation for Gutenberg lists */
.wp-block-list {
    padding-left: 0 !important;       /* remove Gutenberg inline padding */
}

.wp-block-list li {
    display: list-item !important;     /* ensure bullet behavior */
    margin-left: 2em !important;       /* space for bullets */
    text-indent: -1em !important;      /* hanging indent for wrapped lines */
    list-style-position: outside !important; /* bullet outside text */
}