/*
Theme Name: Astra Child
Theme URI: https://wpastra.com/
Description: Child theme for the Astra theme
Author: Your Name
Author URI: https://yourwebsite.com/
Template: astra
Version: 1.0.0
Text Domain: astra-child
*/

/* Add your custom CSS below */

input[type="date"] {
  position: relative; /* Essential for positioning the pseudo-element */
}

input[type="date"]::-webkit-calendar-picker-indicator {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: auto; /* Ensures it expands to fill the available width */
  height: auto; /* Ensures it expands to fill the available height */
  color: transparent; /* Makes the default icon invisible */
  background: transparent; /* Removes any default background associated with the icon */
  cursor: pointer; /* Maintains the pointer cursor to indicate interactivity */
}