.autokeep-global-search__row{
  display:flex;
  gap:10px;
  align-items:center;
}

.autokeep-global-search__input{
  flex:1;
  min-width:180px;
  padding:10px 12px;
  border:1px solid rgba(0,0,0,.15);
  border-radius:10px;
  outline:none;
}

.autokeep-global-search__btn{
  padding:10px 14px;
  border-radius:10px;
  border:1px solid rgba(0,0,0,.15);
  cursor:pointer;
}

.autokeep-global-search__iconbtn{
  display:inline-flex;
  align-items:center;
  gap:8px;
  border:none;
  background:transparent;
  cursor:pointer;
  padding:6px 8px;
}

.autokeep-global-search__open-text{
  font-size:14px;
}

/* Simple magnifier icon */
.akgs-icon{
  width:18px;
  height:18px;
  display:inline-block;
  position:relative;
}
.akgs-icon:before{
  content:"";
  position:absolute;
  inset:0;
  border:2px solid #fff;
  border-radius:50%;
  transform:translate(-2px,-2px);
  width:12px;
  height:12px;
  top:2px;
  left:2px;
}
.akgs-icon:after{
  content:"";
  position:absolute;
  width:8px;
  height:2px;
  background:#fff;
  transform:rotate(45deg);
  right:0px;
  bottom:1px;
  border-radius:1px;
}

/* Modal */
.akgs-modal{
  position:fixed;
  inset:0;
  display:none;
  z-index:999999;
}

.akgs-modal.is-open{
  display:block;
}

.akgs-modal__overlay{
  position:absolute;
  inset:0;
  background:rgba(0,0,0,.55);
}

.akgs-modal__panel{
  position:absolute;
  right:0px;
  width:max-content;
  max-width:620px;
  margin:44px auto 0;
  background:#fff;
  border-radius:14px;
  padding:14px;
  box-shadow:0 10px 40px rgba(0,0,0,.25);
}

.akgs-modal__header{
  display:flex;
  justify-content:space-between;
  align-items:center;
  margin-bottom:12px;
}

.akgs-modal__title{
  font-size:16px;
  font-weight:600;
}

.akgs-modal__close{
  border:none;
  background:transparent;
  cursor:pointer;
  font-size:22px;
  line-height:1;
  padding:4px 8px;
}
