.borders-solid-white {
  border: 1px solid white;
}
.borders-solid-verylightgray {
  border: 1px solid #f0f0f0;
}

.custom-shadow {
  /* Horizontal-offset | Vertical-offset | Blur | Spread | Color */
  /* A subtle shadow that gives the card depth */
  box-shadow:
    0 4px 8px 0 rgba(0, 0, 0, 0.4),
    0 6px 20px 0 rgba(0, 0, 0, 0.25);
  /* For a "glowing" effect on a dark background: */
  /* box-shadow: 0 0 10px rgba(78, 114, 184, 0.8); */
}

.custom-shadow:hover {
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.6);
}
