.folder-icon{
  position: relative;
  width: 36px;
  height: 28px;
  flex-shrink: 0;
}

.folder-tab{
  position: absolute;
  top: 0;
  left: 4px;
  width: 14px;
  height: 8px;
  border: 1px solid var(--line-amber);
  border-bottom: none;
  border-radius: 6px 6px 0 0;
  background: rgba(0,0,0,0.14);
}

.folder-body{
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 22px;
  border: 1px solid var(--line-amber);
  border-radius: 8px;
  background: linear-gradient(
    to bottom,
    rgba(255,255,255,0.04),
    rgba(0,0,0,0.22)
  );
  box-shadow:
    inset 0 0 0 1px rgba(255,255,255,0.02),
    0 6px 18px rgba(0,0,0,0.35);
}

