@import url("https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:wght@100;200;400&display=block");
.acf-google-icons-wrapper {
  display: flex;
  align-items: center;
  gap: 10px;
}

.google-icon-preview {
  font-size: 32px;
  color: #555;
}

.acf-icon-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  display: none;
  justify-content: center;
  align-items: center;
}

.acf-icon-overlay-content {
  background: #fff;
  padding: 20px;
  width: 785px;
  max-height: 80%;
  overflow-y: auto;
  border-radius: 5px;
  text-align: center;
}

.icon-search {
  width: 100%;
  padding: 10px;
  margin-bottom: 10px;
  font-size: 16px;
}

.icon-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  max-height: 300px;
  justify-content: flex-start;
  align-items: flex-start;
  overflow-y: auto;
  overflow-x: hidden;
}

.icon-item {
  font-size: 36px !important;
  width: 48px !important;
  height: 48px !important;
  cursor: pointer;
  transition: 0.3s;
  border: 1px solid rgba(0, 0, 0, 0.1);
  color: rgba(0, 0, 0, 0.6);
  font-weight: 200;
  display: inline-flex;
  justify-content: center;
  align-items: center;
}
.icon-item.selected {
  color: #fff;
  background-color: #187AD9;
}

.icon-item:hover {
  border: 1px solid rgba(0, 0, 0, 0.25);
}

.close-overlay {
  margin-top: 10px;
  padding: 5px 10px;
  cursor: pointer;
  background-color: #187ad9;
  font-weight: bold;
  height: 48px;
  display: inline-flex;
  padding-left: 12px;
  padding-right: 12px;
  align-items: center;
  justify-content: center;
  color: #fff;
  border: 0;
  appearance: none;
  border-radius: 6px;
  font-size: 16px;
}