.icon-grid {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 20px;
  text-align: center;
  margin: 20px auto;
  max-width: 600px;
}

.icon-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.icon-container {
  position: relative;       /* so top: moves it */
  display: inline-block;
  padding: 20px;
  border-radius: 50%;
  background-color: #FCB900;
  color: #fff;
  cursor: pointer;
}

.material-icons {
  font-size: 30px;          /* shrink icons */
  line-height: 1;           /* tighter box */
}

.icon-item p {
  font-size: 14px;          /* smaller text to balance */
  margin-top: 8px;
  color: #333;
  text-transform: lowercase;
}
.icon-container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.2);
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
} 
.dashicons {
  font-size: 60px;          /* Maintain icon size */
  width: 60px;             /* Ensure consistent width */
  height: 60px;            /* Ensure consistent height */
  position: relative;      /* Needed for the vertical adjustment */
  top: -1px;              /* Move icons -1px higher */
  line-height: -10;          /* Remove extra spacing */
}