@use '../../variables' as *;

.root {
  position: relative;

  // Adding border like this to not make container 1px lower
  &:before {
    background-color: rgba(var(--color-neutral-100-rgb), var(--opacity-level-light));
    position: absolute;
    content: '';
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
  }
}
