/*
Theme Name: Frasi.info theme
Template: generatepress
Author: Bob Corraro
Tags: two-columns,three-columns,one-column,right-sidebar,left-sidebar,footer-widgets,blog,e-commerce,flexible-header,full-width-template,buddypress,custom-header,custom-background,custom-menu,custom-colors,sticky-post,threaded-comments,translation-ready,rtl-language-support,featured-images,theme-options
Version: 1.1753713857
Updated: 2025-07-28 16:44:17

*/

/* Contenitore del form */
.wp-block-search {
  max-width: 600px;
  margin: 2rem auto;
  padding: 0;
}

/* Nasconde l'etichetta (opzionale) */
.wp-block-search__label {
  display: none;
}

/* Wrapper interno dell'input */
.wp-block-search__inside-wrapper {
  display: flex;
  align-items: center;
  border: 1px solid #ddd;
  border-radius: 9999px;
  overflow: hidden;
  background-color: #fff;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
  transition: box-shadow 0.2s ease, border-color 0.2s ease;
}

/* Campo input */
.wp-block-search__input {
  flex: 1;
  padding: 0.75rem 1.25rem;
  border: none;
  background: transparent;
  font-size: 1rem;
  color: #111;
  outline: none;
}

.wp-block-search__input::placeholder {
  color: #999;
}

/* Focus attivo */
.wp-block-search__inside-wrapper:focus-within {
  border-color: #2563eb;
  box-shadow: 0 0 0 2px rgba(37, 99, 235, 0.2);
}