.icons_div {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-left: 1.5rem;
}

.icon_base {
  display: flex;
  width: 40px;
  height: 40px;
  background-color: var(--icon-base-color);
  align-items: center;
  justify-content: center;
  border-radius: 5px;
  margin: 0;
}

.icon_container {
  display: flex;
  margin: 0;
  width: calc(100% - 5px);
  height: calc(100% - 5px);
  
  background-color: rgb(33, 33, 33);
  border-radius: 5px;
  justify-content: center;
  align-items: center;
  transition: 0.3s ease;
}

.icon {
  width: 24px;
  height: 24px;
  display: inline-block;
  transition: transform 0.2s ease;
}

.icon:hover {
  transform: scale(1.20);
}

.icon_container:hover {
  box-shadow: 0 6px 16px #0436ff;
}